RPC通信(Windows版、Android版)
1、RPC通信模型
2、调用截图
服务器端
PC客户端:
Android客户端:
3、remotetea
jrpcgen.jar:生成Java源文件
oncrpc.jar:框架通信调用
portmap.jar:Windows调用
4、生成Java源文件
test.x
const MAXNAMELEN = 2048;
typedef string test_string<MAXNAMELEN>;
program TEST_RPC_FUNCTION_NUMBER
{
version TEST_RPC_FUNCTION_VERSION
{
mcps_string TEST_TEST(string) = 1;
mcps_string TEST_DO_PROCESS(string) = 2;
} = 1;
} = 0x20000001;
命令:java -jar jrpcgen test.x
生成的文件:
test.java
test_string.java
testClient.java(文件中的mcps_string改为test_string)
testServerStub.java(文件中的mcps_string改为test_string)
5、Server端:
引用:oncrpc.jar和4个Java文件
import java.io.IOException;
import java.net.InetAddress;
import java.net.UnknownHostException; import org.acplt.oncrpc.OncRpcException; public class Main extends testServerStub { public Main(InetAddress bindAddr, int port) throws OncRpcException,
IOException {
super(bindAddr, port);
// TODO Auto-generated constructor stub
} public test_string TEST_TEST_1(String arg1){ System.out.println("This is test function" + arg1);
return null;
} public test_string TEST_DO_PROCESS_1(String arg1){ System.out.println("Got msg from client " + arg1);
return null;
} /**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
try{ System.out.println("--Server Start--");
InetAddress address = null;
try{
//address = InetAddress.getLocalHost();
address = InetAddress.getByAddress(new byte[]{(byte)192, (byte)168, (byte)1, (byte)101});
System.out.println(address.toString());
}catch(UnknownHostException e){
System.out.println(e.getMessage());
} Main server = new Main(address, 2023);
System.out.println("Is server null? " + (server == null ? true : false));
server.run(); }catch(Exception e){ System.out.println(e.getMessage());
} } }
6、Client端
import java.io.IOException;
import java.net.InetAddress;
import java.net.UnknownHostException; import org.acplt.oncrpc.OncRpcException;
import org.acplt.oncrpc.OncRpcProtocols; public class Main extends testClient { public Main(InetAddress host, int port, int protocol)
throws OncRpcException, IOException {
super(host, port, protocol);
// TODO Auto-generated constructor stub
} /**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub System.out.println("--Start Client--");
InetAddress address = null; try{
//address = InetAddress.getLocalHost();
address = InetAddress.getByAddress(new byte[]{(byte)192, (byte)168, (byte)1, (byte)101}); System.out.println(address.toString());
}catch(UnknownHostException e){
System.out.println(e.getMessage());
} try{
// Main client = new Main(address, 2023, OncRpcProtocols.ONCRPC_TCP);
// client.TEST_TEST_1("SSB Test2");
// client.close(); Main client = new Main(address, 2023, OncRpcProtocols.ONCRPC_TCP);
client.TEST_DO_PROCESS_1("SSB Test");
client.close(); }catch(OncRpcException e){
System.out.println(e.getMessage());
}catch(IOException e){
System.out.println(e.getMessage());
}
} }
7、Android端:
package com.fish.compass.util;
import java.io.IOException;
import java.net.InetAddress;
import java.net.UnknownHostException; import org.acplt.oncrpc.OncRpcException;
import org.acplt.oncrpc.OncRpcProtocols; public class Main extends testClient { public Main(InetAddress host, int port, int protocol)
throws OncRpcException, IOException {
super(host, port, protocol);
} /**
* @param args
*/
public static String run() {
StringBuilder rtn = new StringBuilder();
rtn.append("--Start Client--"); InetAddress address = null;
try{
address = InetAddress.getByAddress(new byte[]{(byte)192, (byte)168, (byte)1, (byte)101});
rtn.append(address.toString());
}catch(UnknownHostException e){
rtn.append(e.getMessage());
} try{
Main client = new Main(address, 2023, OncRpcProtocols.ONCRPC_TCP);
client.TEST_DO_PROCESS_1("SSB phone Test");
client.close(); }catch(OncRpcException e){
rtn.append(e.getMessage());
}catch(IOException e){
rtn.append(e.getMessage());
} return rtn.toString();
} }
Activity
package com.fish.compass; import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection; import com.fish.compass.util.Main; import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.content.Context;
import android.graphics.Color;
import android.media.RingtoneManager;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast; public class MainActivity extends Activity { TextView m_TextView; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); Button m_OKButton = (Button) findViewById(R.id.m_OKButton);
m_TextView = (TextView) findViewById(R.id.m_MsgTextView); m_OKButton.setOnClickListener(new OnClickListener() { @Override
public void onClick(View v) {
Thread t = new Thread(new Runnable(){ @Override
public void run() {
getMsg();
} });
t.start(); }
}); } Handler m_Handler = new Handler(){
@Override
public void handleMessage(Message msg){
super.handleMessage(msg);
if(msg.what == 1){
m_TextView.setText(msg.obj.toString());
}
}
}; public void getMsg(){ StringBuilder sb = new StringBuilder(); try{ String msg = Main.run(); sb.append(msg); }catch(Exception ex){
sb.append(ex.getMessage());
} m_Handler.obtainMessage(1, sb.toString()).sendToTarget();
} }
源码下载:百度网盘
参考:
RPC通信(Windows版、Android版)的更多相关文章
- Delphi For Android 开发笔记-附:如何Delphi中同时实现Windows、Android版的GetModuleFileName函数
在Windows中开发DLL时,经常会需要获取当前DLL所在目录以便读取同目录下的其他文件,而目前Delphi在开发android时,其实没多大必要获取,因为整个工程只有一个so文件,而这个so文件也 ...
- SpringBoot2+Netty打造通俗简版RPC通信框架(升级版)
背景 上篇文章我简单的介绍了自己打造的通俗简版RPC通信框架,这篇是对简版的增强~ 如果大家对此项目还感兴趣的话,可到码云上瞄瞄:Netty-RPC 上 ...
- SpringBoot2+Netty打造通俗简版RPC通信框架
2019-07-19:完成基本RPC通信! 2019-07-22:优化此框架,实现单一长连接! 2019-07-24:继续优化此框架:1.增加服务提供注解(带版本号),然后利用Spring框架的在启动 ...
- android电源“有毒”移动电源Android版的设计及其实现
工作之余抽点时间出来写写博文,希望对新接触的朋友有帮助.今天在这里和大家一起学习一下android电源 报道http://www.cnbeta.com/articles/239726.htm称:安全研 ...
- React Native App设置&Android版发布
React Native系列 <逻辑性最强的React Native环境搭建与调试> <ReactNative开发工具有这一篇足矣> <解决React Native un ...
- Windows 10正式版历代记:Version 和 Build 对应关系
2017年10月中下旬,微软面向正式版用户推送了Windows 10创意者更新秋季版.这是自发布以来,Windows 10的第五个大版本. 在这篇文章中,我们来回顾一下Windows 10正式版的历史 ...
- Android版-微信APP支付
首发地址: Android版-微信APP支付 欢迎留言.转发 微信极速开发系列文章(微信支付.授权获取用户信息等):点击这里 目录 1.注册账号.开发者认证 2.添加应用 3.申请微信支付 4.技术开 ...
- 凡信(超仿微信Android版)开源了,内有源码下载 -
韩梦飞沙 韩亚飞 313134555@qq.com yue31313 han_meng_fei_sha 凡信(超仿微信Android版)开源了,内有源码下载 - IM Geek开发者社区-移动 ...
- Windows 10正式版历代记:Version 1709、Build 16299都是什么鬼?
Windows 10免费用!创意者更新秋季版激活秘籍 2017年10月中下旬,微软面向正式版用户推送了Windows 10创意者更新秋季版.这是自发布以来,Windows 10的第五个大版本. 在这篇 ...
- 【项目记录】-液化气配送app android版
15年底参与过甲方呼叫中心平台开发.液化气配送app android版要求1个月开发完成.开发此项目以前我只有过一周android的开发经验.(与甲方签署过保密协议,遵循职业道德有些敏感信息不能写.) ...
随机推荐
- STM32中断控制及优先级设置
M3用8bits而STM32用高四位来表示抢占和子优先级:bit=1表示抢占:bit=0表示非抢占即子优先级:所以共有5中方案分组: 分组 Bit7 Bit6 Bit5 Bit4 说明: 第0组 ...
- SKD
1, 软件开发工具包 软件开发工具包(Software Development Kit,即SDK)一般是一些被软件工程师用于为特定的软件包.软件框架.硬件平台.操作系统等建立应用软件的开发工具的集合. ...
- JAVA 数组排序
一.数组升序排序 实例: import java.util.Arrays; //导入数组处理 public class Test{ public static void main(String[] a ...
- Python深入04 闭包
作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明.谢谢! 闭包(closure)是函数式编程的重要的语法结构.函数式编程是一种编程范式 (而 ...
- XtraReport 实例化 打印
// Create a report instance, assigned to a Print Tool. ReportPrintTool pt = new ReportPrintTool( ...
- javascript自执行匿名函数
1)自执行匿名函数: 常见格式:(function() { /* code */ })(); 2)作用: function中的code代码在解释时就已经在运行了.因此可以用它创建命名空间, ...
- Sqlserver中存储过程,触发器,自定义函数
Sqlserver中存储过程,触发器,自定义函数: 1. 触发器:是针对数据库表或数据库的特殊存储过程,在某些行为发生的时候就会被激活 触发器的分类: DML触发器:发生在数据操作语言执行时触发执行的 ...
- NYOJ 51-管闲事的小明
点击打开链接 管闲事的小明 时间限制:4000 ms | 内存限制:65535 KB 难度:2 描述 某校大门外长度为L的马路上有一排树,每两棵相邻的树之间的间隔都是1米.我们可以把马路看成一个数 ...
- php 分享两种给图片加水印的方法
本文章向码农们介绍 php 给图片加水印的两种方法,感兴趣的码农可以参考一下本文章的源代码. 方法一:PHP最简单的加水印方法 <?php // http://www.manongjc.com ...
- Log4日志配置及使用
1.log4j.xml <?xml version="1.0" encoding="gb2312" ?> <!DOCTYPE log4j:co ...