gpt4 book ai didi

java - 使用 POST 发送 xml 文件并在 php 中接收

转载 作者:行者123 更新时间:2023-12-01 16:06:01 26 4
gpt4 key购买 nike

我正在开发一个使用 Android SO 和 Java 的应用程序。我想将 xml 文件作为 POST 发送到 php 服务器,该服务器将 xml 中的信息插入到数据库中。

我该怎么做?

问候:D

最佳答案

以下是如何使用 Java POST xml

String urlText = "http://example.com/someservice.php";
String someXmlContent = "<root><node>Some text</node></root>";
try {
HttpURLConnection c = (HttpURLConnection) new URL(urlText).openConnection();
c.setDoOutput(true);
OutputStreamWriter writer = new OutputStreamWriter(c.getOutputStream(), "UTF-8");
writer.write(someXmlContent);
writer.close();
} catch (IOException e) {
e.printStackTrace();
}

关于java - 使用 POST 发送 xml 文件并在 php 中接收,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2583913/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com