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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:23:28+00:00 2026-05-31T08:23:28+00:00

I am working on web application and using GAE/J blobstore tutorial http://code.google.com/appengine/docs/java/blobstore/overview.html I was

  • 0

I am working on web application and using GAE/J blobstore tutorial http://code.google.com/appengine/docs/java/blobstore/overview.html I was able to upload file to blobstore.

My Problem is my “upload file” option is OPTIONAL on form. So user may or maynot choose to upload the file on my form. So since this field is optional, I do not have any upfront form validation for this field, but then when i submit the form “a blank document with 0kb file gets uploaded to blobstore” since i am not able to determine if user has selected any file or not inside servlet.

I tried Apache file upload (ServletFileUpload..etc) but it keeps returning null everytime.

so not sure, how do i determine if user have selected any file to upload inside servlet?

            Map<String, BlobKey> blobs = blobstoreService.getUploadedBlobs(req);
            if (blobs != null && blobs.size() > 0) {
                BlobKey blobkey = blobs.get("myFile");
                blobkeyStr = blobkey.getKeyString();
            }
  • 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-31T08:23:29+00:00Added an answer on May 31, 2026 at 8:23 am

    You can test if a blob was uploaded by checking the size of the blob. If the size is zero, you should delete the blob.

    BlobstoreService bs = BlobstoreServiceFactory.getBlobstoreService();
    BlobKey blobKey = bs.getUploads(req).get("blob").get(0);
    final BlobInfo blobInfo = new BlobInfoFactory().loadBlobInfo(blobKey);
    long size = blobInfo.getSize();
    if(size > 0){
      //process blob
    }else{
      bs.delete(blobKey);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working in a web application using VB.NET. There is also VisualBasic code mixed
we are currently working on a new web application using Java and MySql. We
I am currently working on a JAVA web application using JSF, Facelets, JSTL and
I'm working on development of a social web application using Java. I need to
I'm working with a company that produces a web application using struts with Java.
i am working in a web application using java language.i have a requirement to
I am working on a web based application using php (not using Java), in
I'm currently working on web application using VB in ASP.NET. Right now I have
I am working on a web application using Python (Django) and would like to
I am working on a web application (using Grails) which will generate a gift

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.