⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 123.txt

📁 j2me http的应用问题
💻 TXT
字号:
 
1.通过POST方法,发送数据至HTTP Server 
2.大家通常忽略Content-Type和Content-Length 

...... 
conn.setRequestMethod(HttpConnection.POST); 

conn.setRequestProperty("User-Agent","Profile/MIDP-1.0 Configuration/CLDC-1.0" ); 
conn.setRequestProperty("Content-Language", "en-US" ); 

postmsg = request.getBytes(); 

conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); 
conn.setRequestProperty("Content-Length",Integer.toString( postmsg != null?postmsg.length : 0 ) ); 

out = conn.openOutputStream(); 
out.write(postmsg); 
...... 


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -