我正在尝试使用Java通过命令执行curl请求。
为了完成这件事,我正在使用 Runtime.getRuntime()。exec(command);
但我面临的问题是将curl请求转换为String。
卷曲命令
curl --data "name=hell&&email=check@gmail.com&&phone=9845123134" http://www.example.com
想要转换为Java字符串
我该怎么做?
答案 0 :(得分:1)
Runtime.getRuntime().exec("curl --data \"name=hell&&email=check@gmail.com&&phone=9845123134\" http://www.example.com");
http://docs.oracle.com/javase/tutorial/java/data/characters.html