gpt4 book ai didi

java - Android 手机使用 Java 将文本文件发送到托管网络空间

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

我想将 Android 手机上的文本文件中的消息保存到托管网络服务器(例如 bluehost)上,我有一个用户名和密码。我想将文件存储在服务器上的任意目录中。

可以实现这一目标的一般策略是什么?我想使用 HTTP 协议(protocol),这是一个好主意吗?有更好的办法吗?

最佳答案

您可以尝试将该字符串发布到服务器:

    // Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://www.example.com");

try {
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("yourVarName", stringVar);
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs, "UTF-8"));

// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);

return (response.getStatusLine().getStatusCode() == 200 || response.getStatusLine().getStatusCode() == 204);

} catch (ClientProtocolException e) {
e.printStackTrace();
return false;
} catch (IOException e) {
e.printStackTrace();
return false;
}

关于java - Android 手机使用 Java 将文本文件发送到托管网络空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14340625/

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