将curl命令翻译成java/android

发布于 2024-11-09 10:19:15 字数 403 浏览 0 评论 0原文

有人可以帮我弄清楚如何将以下curl命令转换为Java语法以便在Android应用程序中使用吗?

curl 命令为:

curl -u 用户名:密码 -H "Content-Type:application/vnd.org.snia.cdmi.container" http://localhost:8080/user

curl -u 用户名:密码 -T /home/user1/a.jpg -H "内容类型:图像" http://localhost:8080/user/a.jpg

谢谢

Can someone help me figure out how to translate the following curl commands into Java syntax for use in an Android application?

The curl commands are:

curl -u username:password -H "Content-Type:application/vnd.org.snia.cdmi.container" http://localhost:8080/user

curl -u username:password -T /home/user1/a.jpg -H "Content-Type:image" http://localhost:8080/user/a.jpg

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〆一缕阳光ご 2024-11-16 10:19:15

您可以在 Android 中使用 Apache HttpClient 来执行 HTTP 发布。

  • HttpClient 代码片段(未经测试)

    public void postData(String url) {
        // 创建一个新的 HttpClient 和 Post 标头
       HttpClient httpclient = new DefaultHttpClient();
       HttpPost httppost = new HttpPost(url);
    
    尝试 {
        // 设置标题(你的 -H 选项)
        httpost.setHeader("内容类型", "application/json");
        // 添加你的数据
        列表 nameValuePairs = new ArrayList(2);
        nameValuePairs.add(new BasicNameValuePair("param1", "value1"));
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
    
        // 执行HTTP POST请求
        HttpResponse 响应 = httpclient.execute(httppost);
    
    } catch (异常 e) {
        // 异常处理
    } 
    

    }

  • 检查以下链接中的基本身份验证部分(您的 -u 选项)

http://dlinsin.blogspot.com/ 2009/08/http-basic-authentication-with-android.html

  • 检查以下文件上传答案(您的 -T 选项)

如何使用与 PHP 配合使用的 Java HttpClient 库上传文件

You can use Apache HttpClient in Android for performing HTTP posts.

  • HttpClient code snippet (untested)

    public void postData(String url) {
        // Create a new HttpClient and Post Header
       HttpClient httpclient = new DefaultHttpClient();
       HttpPost httppost = new HttpPost(url);
    
    try {
        // Set the headers (your -H options)
        httpost.setHeader("Content-type", "application/json");
        // Add your data
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
        nameValuePairs.add(new BasicNameValuePair("param1", "value1"));
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
    
        // Execute HTTP Post Request
        HttpResponse response = httpclient.execute(httppost);
    
    } catch (Exception e) {
        // Exception handling
    } 
    

    }

  • Check the following link for the basic authentication part (your -u option)

http://dlinsin.blogspot.com/2009/08/http-basic-authentication-with-android.html

  • Check the following answer for your file upload (your -T option)

How to upload a file using Java HttpClient library working with PHP

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文