Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6038775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:16:16+00:00 2026-05-23T06:16:16+00:00

Do anyone know how to get parameters’ values from curl command in REST web

  • 0

Do anyone know how to get parameters’ values from curl command in REST web service using java.I have write a REST web service using jersey framework and java in NetBean IDE.
This is my curl command to uplaod file without metadata:

curl -T C:\Users\Folders\a.jpg -H "Content-Type:application/vnd.org.snia.cdmi.dataobject" http://localhost:8080/users/folder/a.jpg 

This is my HttpPut method for upload

@PUT
@Path("/{directory:.+}")
public Response doPut(@PathParam("directory")String data,byte[]contents)
{
..............
}

This is my curl command to upload file with metadata

curl  --data " { "metadata" : "Username":"name"}" -T C:\Users\Folders\a.jpg -H "Content-Type:application/vnd.org.snia.cdmi.dataobject" http://localhost:8080/users/folder/a.jpg 

This is my HttpPut method for upload

@PUT
@Path("/{direcotry:.+}")
public Response doPut(@PathParam("directory")String data,byte[]contents,String meta)
{
..............
}

My question is when i upload file without metadata i can upload successfully. But when i add metadata i can’t get the “–data” values from curl command in doPut method. How can I solve it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T06:16:17+00:00Added an answer on May 23, 2026 at 6:16 am

    If you need to submit both a blob of binary data (the jpg) and some metadata (json string) in a single request, I’d recommend a request that submits a form (content type application/x-www-form-urlencoded). This allows you to include both items in the request body.

    Each item in the request is mapped to a method parameter using the @FormParam annotation, so you’d have something like this:

    @PUT
    @Path("/{directory:.+}")
    @Consumes("application/x-www-form-urlencoded")
    public Response doPut(@PathParam("directory") String directory,
                          @FormParam byte[] image,
                          @FormParam String metadata) {
        ...
    }
    

    For details on how to continue testing this with curl, see the --data-urlencode argument.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know of a way to get only POST parameters from an HttpServletRequest
Anyone know how to get the position of a node using XPath? Say I
Does anyone know how to get the operating system information from a microsoft sql
Does anyone know how to execute a PowerShell script from SSIS? I have created
Does anyone know how to get compile time validation of parameters being passed to
Right, so I have an enumerable and wish to get distinct values from it.
Anyone know how to get this to work if it's possible? class Foo def
Does anyone know how to get IntelliSense to work reliably when working in C/C++
Does anyone know how to get the MS Office 2007 .NET C# Interop libraries
Does anyone know how to get the below to report a javascript error? (any

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.