WAP之家:为您提供最全最新的WAP技术,CP.SP.3G等行业资讯。 WAP之家交流论坛全新开放 点击进入>>
WAP资讯 | 3G动态 | SP动态 | 运营商动态 | 内容商动态 | 制造商动态 | 论坛讨论>> 每次自动访问
WAP技术 | WAP源码 | 手机编程 | 手机源码 | 无线技术 | J2ME技术 | 手机软件 添加到收藏夹
IVR技术 | SP资料 | SMS MMS技术 | 商业方案 | IVR下载 | 书籍教程 | 工具软件 语言:繁體中文

WAP之家技术文章J2ME技术进阶教程在无线J2ME设备上实现超文本传输协议

在无线J2ME设备上实现超文本传输协议
作者:cherio  来源:转载  发布时间:2005-7-15 15:01:41
法的意图是发送已经写入的数据到DataOutputStream的服务器的缓冲区中。 在某些电话上,这个操作工作正常,在其他的电话上,它导致HTTP请求的Transfer - Encoding被设置为" chunked ",有一些随机字符被放到请求本身的前面和后面。那又怎样处理这个问题呢?这个方法调用实际上是根本不需要的。在接下来的一行中,服务器连接打开(通过openInputStream ()),将自动输入缓冲区。因此,你最好不要调用缓冲区的flush()方法。这个方法其余的部分保持不变,除了DataOutputStream对象必须在finally{;};语句块中关闭。 }; finally {; if ( hc != null ) hc.close();

if ( dis != null ) dis.close();

if ( dos != null ) dis.close();
};//结束 try/finally   这就是所有的程序代码!并请参见本文后附带的程序代码。   随着可以使用国际互联网络和支持网络的无线设备日益的增多普及,Java和J2ME的重要性也在不断的变大。因为HTTP协议是当前仅有的,被所有的遵从MIDP规范的设备支持的网络协议,它也是用于开发无线网络应用程序的最好的候选者。   在本文中,我们探究了无线网络编程的基本结构和几个核心问题,我们看了如何调用两个最常用的HTTP请求方法:GET和POST。J2ME仍然在它的发展初期,并且无线设备也即将得到大面积的普及。所以,所有有志投身于无线网络编程中的开发者们将得到大展拳脚的好机会。   附录: /*
* HttpMidlet.java
*/
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.io.*;
import java.io.*;

public class HttpMidlet extends MIDlet implements CommandListener {;
//使用默认的URL。用户可以从图形用户接口改变这个值
private static String defaultURL = "http://localhost:8080/test/servlet/EchoServlet";;

// 主MIDP 显示
private Display myDisplay = null;

// 输入URL的图形用户接口组件
private form requestScreen;
private TextField requestField;

// 用于提交请求的图形用户接口组件
private List list;
private String[] menuItems;

// 用于显示服务器响应的图形用户接口组件
private form resultScreen;
private StringItem resultField;

//用于requestScreen的"send"按钮
Command sendCommand;
// 用于requestScreen的"exit"按钮
Command exitCommand;
// 用于requestScreen的"back"按钮
Command backCommand;

public HttpMidlet(){;
// 初始化图形用户接口组件
myDisplay = Display.getDisplay( this );
sendCommand = new Command( "SEND", Command.OK, 1 );
exitCommand = new Command( "EXIT", Command.OK, 1 );
backCommand = new Command( "BACK", Command.OK, 1 );

//显示请求的URL
requestScreen = new form( "Type in a URL:" );
requestField = new TextField( null, defaultURL, 100, TextField.URL );
requestScreen.append( requestField );
requestScreen.addCommand( sendCommand );
requestScreen.addCommand( exitCommand );
requestScreen.setCommandListener( this );

// 选择想要的HTTP请求方法
menuItems = new String[] {;"GET Request", "POST Request"};; list = new List( "Select an HTTP method:", List.IMPLICIT, menuItems, null );
list.setCommandListener( this );

// 先是从服务器上收到的信息
resultScreen = new form( "Server Response:" );
resultScreen.addCommand( backCommand );
resultScreen.setCommandListener( this );

};//结束HttpMidlet()

public void startApp() {;
myDisplay.setCurrent( requestScreen );
};//结束 startApp()

public void commandAction( Command com, Displayable disp ) {;
// 当用户点击"send"按钮
if ( com == sendCommand ) {;
myDisplay.setCurrent( list );
}; else if ( com == backCommand ) {;
requestField.setString( defaultURL );
myDisplay.setCurrent( requestScreen );
}; else if ( com == exitCommand ) {;
destroyApp( true );
notifyDestroyed();
};//结束 if ( com == sendCommand )

if ( disp == list && com == List.SELECT_COMMAND ) {;

String result;

if ( list.getSelectedIndex() == 0 ) // 发送一个 GET 请求到服务器
result = sendHttpGet( requestField.getString() );
else // 发送一个 POST 请求到服务器
result = sendHttpPost( requestField.getString() );

resultField = new StringItem( null, result );
resultScreen.append( resultField );
myDisplay.setCurrent( resultScreen );
};//结束if ( dis == list && com == List.SELECT_COMMAND )
};//结束 commandAction( Command, Displayable )

private String sendHttpGet( String url )
{;
HttpConnection hcon = null;
DataInputStream dis = null;
StringBuffer responseMessage = new StringBuffer();

try {;
//使用READ权限的标准的 HttpConnection
hcon = ( HttpConnection )Connector.open( url );

//从HttpConnection取得一个 DataInputStream
dis = new DataInputStream( hcon.openInputStream() );

// 从服务器上取回响应
int ch;
while ( ( ch = dis.read() ) != -1 ) {;
responseMessage.append( (char) ch );
};//结束while ( ( ch = dis.read() ) != -1 )
}; catch( Exception e )
{;
e.printStackTrace();
responseMessage.append( "ERROR" );
}; finally {;
try {;
if ( hcon != null ) hcon.close();
if ( dis != null ) dis.close();
}; catch ( IOException ioe ) {;
ioe.printStackTrace();
};//结束try/catch };//结束try/catch/finally
return responseMessage.toString();
};//结束sendHttpGet( String )

private String sendHttpPost( String url )
{;
HttpConnection hcon = null;
DataInputStream dis = null;
DataOutputStream dos = null;
StringBuffer responseMessage = new StringBuffer();
// 请求体
String requeststring = "This is a POST.";

try {;
// 使用读写权限的 HttpConnection
hcon = ( Htt

上一页  [1] [2] [3]  下一页

[] [返回上一页] [打 印]
文章评论

用户名: 查看更多评论

分 值:100分 85分 70分 55分 40分 25分 10分 0分

内 容:

         (注“”为必填内容。) 验证码: 验证码,看不清楚?请点击刷新验证码