我有一个用C#编写的桌面应用程序,它将与Android应用程序通信。通过tcp / ip连接在它们之间传递数据的最简单方法是什么?我对性能不太感兴趣,对易于实现更感兴趣。
答案 0 :(得分:2)
我自然不理解 ease of implementation
的含义。但正如我猜测的那样,你应该需要这些:
<强> In [C#]:
强>
//util function
public static void WriteBuffer(BinaryWriter os, byte[] array) {
if ((array!=null) && (array.Length > 0) && (array.Length < MAX_BUFFER_SIZE)) {
WriteInt(os,array.Length);
os.Write(array);
} else {
WriteEmptyBuffer(os);
}
}
//write a string
public static void WriteString(BinaryWriter os, string value) {
if (value!=null) {
byte[] array = System.Text.Encoding.Unicode.GetBytes(value);
WriteBuffer(os,array);
} else {
WriteEmptyBuffer(os);
}
}
<强> In [Java] Android:
强>
/** Read a String from the wire. Strings are represented by
a length first, then a sequence of Unicode bytes. */
public static String ReadString(DataInputStream input_stream) throws IOException
{
String ret = null;
int len = ReadInt(input_stream);
if ((len == 0) || (len > MAX_BUFFER_SIZE)) {
ret = "";
} else {
byte[] buffer = new byte[len];
input_stream.readFully(buffer);
ret = new String(buffer, DATA_CHARSET);
}
return (ret);
}
对于进一步的结构数据,例如,您希望在C#和Java之间发送对象,请使用 XML Serialization in C#
和 XML Parser in Java
。你可以在互联网上搜索这些;很多例子都在Code Project网站上。
在Android部分中,您可以使用 XStream 库来方便使用。