- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章c#进程之间对象传递方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
1. 起源 。
kv项目下载底层重构升级决定采用独立进程进行media下载处理,以能做到模块复用之目的,因此涉及到了独立进程间的数据传递问题.
目前进程间数据传递,多用wm_copydata、共享dll、内存映射、remoting等方式。相对来说,wm_copydata方式更为简便,网上更到处是其使用方法.
而且marshal这个静态类,其内置多种方法,可以很方便实现字符串、结构体等数据在不同进程间传递.
那么,对象呢?如何传递?
2、序列化 。
想到了,newtonsoft.json.dll这个神器。相对于内建的xmlserializer这个东西,我更喜欢用json.
那么,如此处理吧,我们来建个demo解决方案,里面有hostapp、clildapp两个项目,以做数据传递.
3、childapp项目 。
先说这个,我没有抽取共用的数据单独出来,而做为demo,直接写入此项目中,hostapp引用此项目,就可引用其中public出来的数据类型.
数据结构部分代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
[structlayout(layoutkind.sequential)]
public
struct
copydatastruct
{
public
intptr dwdata;
public
int
cbdata;
[marshalas(unmanagedtype.lpstr)]
public
string
lpdata;
}
[serializable]
public
class
person
{
private
string
name;
private
int
age;
private
list<person> children;
public
person(
string
name,
int
age)
{
this
.name = name;
this
.age = age;
this
.children =
new
list<person>();
}
public
string
name
{
get
{
return
this
.name; }
set
{
this
.name = value; }
}
public
int
age
{
get
{
return
this
.age; }
set
{
this
.age = value; }
}
public
list<person> children
{
get
{
return
this
.children; }
}
public
void
addchildren()
{
this
.children.add(
new
person(
"liuxm"
, 9));
this
.children.add(
new
person(
"liuhm"
, 7));
}
public
override
string
tostring()
{
string
info =
string
.format(
"姓名:{0},年龄:{1}"
,
this
.name,
this
.age);
if
(
this
.children.count != 0)
{
info += (
this
.children.count == 1) ?
"\r\n孩子:"
:
"\r\n孩子们:"
;
foreach
(var child
in
this
.children)
info +=
"\r\n"
+ child.tostring();
}
return
info;
}
}
|
窗体代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
public
partial
class
childform : form
{
public
const
int
wm_copydata = 0x004a;
private
intptr hosthandle = intptr.zero;
person person =
new
person(
"liujw"
, 1999);
[dllimport(
"user32.dll"
, entrypoint =
"sendmessage"
)]
private
static
extern
int
sendmessage(
intptr hwnd,
// handle to destination window
int
msg,
// message
int
wparam,
// first message parameter
ref
copydatastruct lparam
// second message parameter
);
public
childform(
string
[] args)
{
initializecomponent();
if
(args.length != 0)
this
.hosthandle = (intptr)
int
.parse(args[0]);
}
private
void
btnsubmit_click(
object
sender, eventargs e)
{
this
.person.name = txtname.text;
int
age;
this
.person.age =
int
.tryparse(txtage.text,
out
age) ? age : 0;
this
.person.addchildren();
if
(
this
.hosthandle != intptr.zero)
{
string
data = getpersionstr();
copydatastruct cds =
new
copydatastruct();
cds.dwdata = (intptr)901;
cds.cbdata = data.length + 1;
cds.lpdata = data;
sendmessage(
this
.hosthandle, wm_copydata, 0,
ref
cds);
}
}
private
string
getpersionstr()
{
return
jsonconvert.serializeobject(
this
.person);
}
}
|
这样在窗体按钮btnsubmit_click事件中,完成了数据向hostapp的字符串形式传递.
如何获取宿主程序的窗口句柄呢?改造下childapp的program.cs过程即可:
1
2
3
4
5
6
7
8
9
10
|
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[stathread]
static
void
main(
string
[] args)
{
application.enablevisualstyles();
application.setcompatibletextrenderingdefault(
false
);
application.run(
new
childform(args));
}
|
3、hostapp项目 。
我们权且称之为宿主项目吧,其窗体代码为:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
public
partial
class
mainform : form
{
public
const
int
wm_copydata = 0x004a;
public
mainform()
{
initializecomponent();
}
protected
override
void
wndproc(
ref
message m)
{
base
.wndproc(
ref
m);
switch
(m.msg)
{
case
wm_copydata:
copydatastruct copydata =
new
copydatastruct();
type type = copydata.gettype();
copydata = (copydatastruct)m.getlparam(type);
string
data = copydata.lpdata;
restoreperson(data);
break
;
}
}
private
void
restoreperson(
string
data)
{
var person = jsonconvert.deserializeobject<person>(data);
if
(person !=
null
)
txtinfo.text = person.tostring();
}
private
void
btnsubmit_click(
object
sender, eventargs e)
{
runchildprocess();
}
private
void
runchildprocess()
{
string
apppath = path.getdirectoryname(application.executablepath);
string
childpath = path.combine(apppath,
"childapp.exe"
);
process.start(childpath,
this
.handle.tostring());
}
}
|
它的作用就是接收子进程传递回来的字串,用jsonconvert反序列化为person对象.
是不是很简单呢?
其实就是用了wm_copydata的字符串传递功能,加上json的序列化、反序列化,而实现c#不同进程间的对象传递 。
4、效果图:
5、2017-03-24追加:
今天又发现用json序列化较为复杂的字串时,出现转义错误,导致反序列化失败。于时改用二进制序列化,转其为base64字串进行传递,问题解决.
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
public
static
class
serializehelper
{
/// <summary>
/// 序列obj对象为base64字串
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
public
static
string
serialize(
object
obj)
{
if
(obj ==
null
)
return
string
.empty;
try
{
var formatter =
new
binaryformatter();
var stream =
new
memorystream();
formatter.serialize(stream, obj);
stream.position = 0;
byte
[] buffer =
new
byte
[stream.length];
stream.read(buffer, 0, buffer.length);
stream.close();
return
convert.tobase64string(buffer);
}
catch
(exception ex)
{
throw
new
exception(
string
.format(
"序列化{0}失败,原因:{1}"
, obj, ex.message));
}
}
/// <summary>
/// 反序列化字符串到对象
/// </summary>
/// <param name="str">要转换为对象的字符串</param>
/// <returns>反序列化出来的对象</returns>
public
static
t deserialize<t>(
string
str)
{
var obj =
default
(t);
if
(
string
.isnullorempty(str))
return
obj;
try
{
var formatter =
new
binaryformatter();
byte
[] buffer = convert.frombase64string(str);
memorystream stream =
new
memorystream(buffer);
obj = (t)formatter.deserialize(stream);
stream.close();
}
catch
(exception ex)
{
throw
new
exception(
string
.format(
"序列化{0}失败,原因:{1}"
, obj, ex.message));
}
return
obj;
}
}
|
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持我! 。
原文链接:http://www.cnblogs.com/crwy/p/6568871.html 。
最后此篇关于c#进程之间对象传递方法的文章就讲到这里了,如果你想了解更多关于c#进程之间对象传递方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!