程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> J2ME >> 在無線J2ME設備上實現http傳輸(2)

在無線J2ME設備上實現http傳輸(2)

編輯:J2ME

如何發送一個HTTP POST請求

你可以想象,發送一個HTTP POST請求的處理過程其實與發送一個GET請求非常地類似。我們將修改一個現有命令,添加少量的新的命令,並添加一個來自通用連接框架的附加的對象和一個附加的StringBuffer對象把POST請求體重的內容發送到服務器中。剩下的命令將保持不變。

復制我們剛才創建的sendHttpGet()方法,把它粘貼進同一個類文件,改名為sendHttpPost()。 現在,我們將修改這個新方法來發送一個HTTP POST請求到服務器。 在方法的頂部添加兩個新的變量說明。 聲明一個類型為DataOutputStream的變量和另一個String類型的變量。 我們將使用DataOutputStream對象把存在於字符串變量中的POST請求體發送到服務器中。

DataOutputStream DOS = null; 
String requestBody = null;

修改connector.open()命令包含另一個參數,指出連接將允許客戶端可以通過連接在服務器上讀和寫。

hcon = ( HttpConnection ) Connector.open( url, Connector.READ_WRITE );

設置HttpConnection對象使用的請求方法為POST(默認的方法是GET)。

hcon.setRequestMethod( HttpConnection.POST );

得到一個用於現有的HTTP連接的DataOutputStream對象。

DOS = hc.openDataOutputStream();

聲明一個字節數組並通過檢索一個來自requestBody字符串的字節數組初始化。 然後把DataOutputStream的緩沖寫入字節數組內。

byte[] byteRequest = requestBody.getBytes(); 
for( int i = 0; i < byteRequest.length; i++ ) { 
DOS.writeByte(byteRequest[i]);
}//結束for( int i = 0; i < byteRequest.length; i++ )
DOS.flush(); //包含本句,在某些設被上將可能會產生不可預期的結果

調用flush ()方法的意圖是發送已經寫入的數據到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 = ( HttpConnection )Connector.open( url, Connector.READ_WRITE );

//設置請求方法為POST
hcon.setRequestMethod( HttpConnection.POST );

// 取得發送請求字符串的DataOutputStream
DOS = hcon.openDataOutputStream();
byte[] request_body = requeststring.getBytes();

// 發送請求字符串到服務器
for( int i = 0; i < request_body.length; i++ ) {
DOS.writeByte( request_body[i] );
}//結束 for( int i = 0; i < request_body.length; i++ )

// 取得做為接收服務器響應的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 {
// 釋放輸入輸出流和HTTP連接
try {
if( hcon != null ) hcon.close();
if( dis != null ) dis.close();
if( dos != null ) DOS.close();
} catch ( IOException ioe ) {
ioe.printStackTrace();
}//結束try/catch
}//結束try/catch/finally
return responseMessage.toString();
}//結束sendHttpPost( String )

public void pauseApp() {
}//結束pauseApp()

public void destroyApp( boolean unconditional ) {
myDisplay = null;
requestScreen = null;
requestFIEld = null;
resultScreen = null;
resultFIEld = null;
}//結束 destroyApp( boolean )
}//結束HttpMidlet

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved