当前位置: 技术问答>java相关
有没有哪位提供一下可以接收服务器中文字体的源代码
来源: 互联网 发布时间:2017-03-13
本文导语: 有没有哪位提供一下可以接收服务器中文字体的源代码 提示一下也行 谢了 | 是中文文字吗? 我的程序直接接收服务器端的数据, 服务器端是asp的,代码是 Response.write "中文" 手机这边接受正...
有没有哪位提供一下可以接收服务器中文字体的源代码
提示一下也行
谢了
提示一下也行
谢了
|
是中文文字吗?
我的程序直接接收服务器端的数据,
服务器端是asp的,代码是
Response.write "中文"
手机这边接受正常呀!
BTW:我用的是WTK里面的模拟器试的,也就是说是“本地和本地连”
因为条件所限,没有在实际环境中测试!
我的程序直接接收服务器端的数据,
服务器端是asp的,代码是
Response.write "中文"
手机这边接受正常呀!
BTW:我用的是WTK里面的模拟器试的,也就是说是“本地和本地连”
因为条件所限,没有在实际环境中测试!
|
以下是我用来进行http联接并接收数据的代码。调用该函数以后,如果ErrorStr为null的话,说明接受成功,否则说明出错!
至于接收下来的内容中含有中文的话,可能还要进行编码转换.
String ErrorStr; // 错误内容
String ConStr; // 接收内容
private void vHTTPConnect(String url)
{
HttpConnection phttp = null;
InputStream is = null;
ErrorString = null;
int rescode;
try
{
phttp = (HttpConnection)Connector.open(url);
rescode = phttp.getResponseCode();
if(rescode != HttpConnection.HTTP_OK)
{
ErrorString = phttp.getResponseMessage();
ErrorString += "n返回代码:"+rescode;
ConStr = null;
}
else
{
is = phttp.openInputStream();
// Get the length and process the data
int len = (int)phttp.getLength();
if (len > 0)
{
byte[] data = new byte[len];
int actual = is.read(data);
ConStr = new String(data);
}
else // lenth unknown
{
byte ch;
StringBuffer sb1 = new StringBuffer();
while ((ch = (byte)is.read()) != -1)
{
char cc;
if (ch
至于接收下来的内容中含有中文的话,可能还要进行编码转换.
String ErrorStr; // 错误内容
String ConStr; // 接收内容
private void vHTTPConnect(String url)
{
HttpConnection phttp = null;
InputStream is = null;
ErrorString = null;
int rescode;
try
{
phttp = (HttpConnection)Connector.open(url);
rescode = phttp.getResponseCode();
if(rescode != HttpConnection.HTTP_OK)
{
ErrorString = phttp.getResponseMessage();
ErrorString += "n返回代码:"+rescode;
ConStr = null;
}
else
{
is = phttp.openInputStream();
// Get the length and process the data
int len = (int)phttp.getLength();
if (len > 0)
{
byte[] data = new byte[len];
int actual = is.read(data);
ConStr = new String(data);
}
else // lenth unknown
{
byte ch;
StringBuffer sb1 = new StringBuffer();
while ((ch = (byte)is.read()) != -1)
{
char cc;
if (ch
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
站内导航:
特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!