http解析java
① 如何实现java解析网络协议报文
普通参数:
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
文件参数:
Content-Type: application/octet-stream
Content-Transfer-Encoding: binary
参数实体的最后一行是: --加上boundary加上--,最后换行,这里的 格式即为: --OCqxMF6-JxtxoMDHmoG5W5eY9MGRsTBp--。
模拟文件上传请求
public static void uploadFile(String fileName) {
try {
// 换行符
final String newLine = "\r\n";
final String boundaryPrefix = "--";
// 定义数据分隔线
String BOUNDARY = "========7d4a6d158c9";
// 服务器的域名
URL url = new URL("www.myhost.com");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
// 设置为POST情
conn.setRequestMethod("POST");
// 发送POST请求必须设置如下两行
conn.setDoOutput(true);
conn.setDoInput(true);
conn.setUseCaches(false);
// 设置请求头参数
conn.setRequestProperty("connection", "Keep-Alive");
conn.setRequestProperty("Charsert", "UTF-8");
conn.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + BOUNDARY);
OutputStream out = new DataOutputStream(conn.getOutputStream());
// 上传文件
File file = new File(fileName);
StringBuilder sb = new StringBuilder();
sb.append(boundaryPrefix);
sb.append(BOUNDARY);
sb.append(newLine);
// 文件参数,photo参数名可以随意修改
sb.append("Content-Disposition: form-data;name=\"photo\";filename=\"" + fileName
+ "\"" + newLine);
sb.append("Content-Type:application/octet-stream");
// 参数头设置完以后需要两个换行,然后才是参数内容
sb.append(newLine);
sb.append(newLine);
// 将参数头的数据写入到输出流中
out.write(sb.toString().getBytes());
// 数据输入流,用于读取文件数据
DataInputStream in = new DataInputStream(new FileInputStream(
file));
byte[] bufferOut = new byte[1024];
int bytes = 0;
// 每次读1KB数据,并且将文件数据写入到输出流中
while ((bytes = in.read(bufferOut)) != -1) {
out.write(bufferOut, 0, bytes);
}
// 最后添加换行
out.write(newLine.getBytes());
in.close();
// 定义最后数据分隔线,即--加上BOUNDARY再加上--。
byte[] end_data = (newLine + boundaryPrefix + BOUNDARY + boundaryPrefix + newLine)
.getBytes();
// 写上结尾标识
out.write(end_data);
out.flush();
out.close();
// 定义BufferedReader输入流来读取URL的响应
// BufferedReader reader = new BufferedReader(new InputStreamReader(
// conn.getInputStream()));
// String line = null;
// while ((line = reader.readLine()) != null) {
// System.out.println(line);
// }
} catch (Exception e) {
System.out.println("发送POST请求出现异常!" + e);
e.printStackTrace();
}
}
② java 怎么把一个从http返回的json 和xml 文件 解析出来取得他具体的值!
定义模板,然后在类中声明,集成spring后就可以通过属性注入了,很方便
③ 求解Java不用组件或框架解析http请求上传图片
首先这个问题很多,bufferedReader不能读二进制文件,你不用框架就是作死。
④ javaweb HttpServletRequest 无法解析为类型
原因是缺少Servlet的jar包,添加运行环境就好了,步骤如下:
1、web程序工程名上右键-->properties(属性)-->JAVA构建路径-->库-->添加库-->选择server runtime
完成之后 重复第一步 就OK了
⑤ java解析html是jsoup还是htmlparse还是其他的什么
用jsoup解析html或者htmlparse,不过比较难用,jsoup是jquery语法比较方便。
⑥ java怎么解析http post请求数据
一般返回的是json格式,用阿里的fast json第三方包来解析。
⑦ java解析http上的xml 根据国家和城市的不同要发送200多次请求的地址然后在解析 但是解析一般就停 不解析了
是否可以先把文件读出来,再解析。你的是一边读一边解析
⑧ JAVA里面的HTTP是什么
java本身不提供http功能。
http是一个应用层协议,底层用到了TCP。Java提供了TCP协议,但是没有http的实现。
但是,可以在网上找到开源的http client/server实现。例如apache-common-http之类的包。
⑨ java 解析http请求数据
string p1=request.getParameter("p1");
string p2=request.getParameter("p2");
这样就获取到数据了,然后你就可以存进数据库中或者进行数据处理。