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 4588916
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T21:59:25+00:00 2026-05-21T21:59:25+00:00

I was wondering whether it’s possible to upload a file from Mathematica to ifile.it.

  • 0

I was wondering whether it’s possible to upload a file from Mathematica to ifile.it. I have seen the API of ifile.it, however, I still don’t know how it works. Furthermore, the closest example I’ve seen in Mathematica is ‘Twittering with Mathematica‘, but it’s not clear to me, how can I use a GET request from that example.

Thanks in advance

  • 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-21T21:59:26+00:00Added an answer on May 21, 2026 at 9:59 pm

    Setup the Java HttpClient library.

    << JLink`
    
    client = JavaNew["org.apache.commons.httpclient.HttpClient"]
    (*
    Out[3]= JLink`Objects`vm1`JavaObject17955866594508801
    *)
    

    Determine which server to use.

    method = JavaNew["org.apache.commons.httpclient.methods.GetMethod", 
      "http://ifile.it/upload:api_fetch_upload_server"]
    
    (*
    Out[4]= JLink`Objects`vm1`JavaObject3301364646019073
    *)
    
    client@executeMethod[method]  
    
    (*
    Out[5]= 200
    *)
    
    id = "server_id" /. ImportString[method@getResponseBodyAsString[], "JSON"]
    
    (*
    Out[6]= "55"
    *)
    

    Upload the file to the server with a POST request using a MultipartRequestEntity with a FilePart.

    method = JavaNew["org.apache.commons.httpclient.methods.PostMethod", 
      "http://s" <> ToString[id] <> ".ifile.it/upload?apikey=" <> apikey]
    
    (*
    Out[7]= JLink`Objects`vm1`JavaObject25911718337052673
    *)
    
    filename = NotebookFileName[];
    
    file = JavaNew["java.io.File", filename]
    
    (*
    Out[9]= JLink`Objects`vm1`JavaObject27844190972936193
    *)
    
    part = JavaNew["org.apache.commons.httpclient.methods.multipart.FilePart", 
      file@getName[], file]
    
    (*
    Out[10]= JLink`Objects`vm1`JavaObject17546309972000769
    *)
    
    part@setContentType["application/vnd.wolfram.mathematica"]
    
    part@setName["Filedata"]
    
    entity = JavaNew[
      "org.apache.commons.httpclient.methods.multipart.MultipartRequestEntity", 
    {part}, method@getParams[]]
    
    (*
    Out[13]= JLink`Objects`vm1`JavaObject22100383232950273
    *)
    
    method@setRequestEntity[entity]
    
    client@executeMethod[method]
    
    (*
    Out[15]= 200
    *)
    
    ImportString[method@getResponseBodyAsString[], "JSON"]
    
    (*
    Out[16]= {"file_key" -> "b8em0dc", 
     "file_md5" -> "acc9b7b3910b1e40188cf26ae3f20b80", 
     "file_mime" -> "text/plain", "file_name" -> "ifile.it.nb", 
     "file_size" -> "10473", "hash" -> "ca3d886713f64af6e9ffe6c3843d2eec", 
     "status" -> "ok", "url" -> "http://ifile.it/b8em0dc/ifile.it.nb"}
    *)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was wondering whether it's possible to add/remove a where clause from a linq
I'm wondering whether it is possible to 'turn off' my main Window from loading
I'm wondering whether something like this is possible (and relatively easy to do), and
I was just wondering whether there is some way to do this: I have
I am wondering whether or not it is possible to output the class name
I was wondering whether one could get the HTML source code from an .swf
I was wondering whether it's possible to change the rubyLocalVariableOrMethod color in a mytheme.vim
I've been wondering whether it is possible or not to pass a function as
Just wondering whether anyone will still use Hibernate once they move to C# 3
I'm just wondering whether it's possible to create an attribute called alias using FactoryGirl,

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.