4
votes
0answers
953 views

Spring MVC multiple file upload with HTML5 multiple file form feature

I am trying to upload multiple files using spring 3.1.2 with @Controller and @RequestMapping. Here's what I did and my configuration. Html5 form : <form action="addFileSystemImage.foo" ...
2
votes
3answers
107 views

Why is an enum declared in a separate file, in Java?

Why is this enum declared in its own file. Is there an advantage to this? Also how would I be able to put this in one of the 2 files. I really have no clue what I am doing. Please also explain this in ...
0
votes
0answers
252 views

How to retrieve row POST data in Java?

We have been using ExtJS widget 'multiple file upload' to upload many files at a time. Everything goes fine on UI side but when we are getting error in Spring's action. I would like to know that how ...
0
votes
1answer
165 views

How to deny choose same file with JFileChooser

I am creating program whose function is that reading "n" .txt or .java files and of these files creates a UML diagram. I have reading method, but I came to problem with load more same files. I would ...
0
votes
1answer
398 views

how to open multiple files at once with an executable

The situation: Java 6 , Windows XP , Eclipse I've got an .exe made out ouf an executable .jar. It is an application which uses a GUI. The program is supposed to read - or later on write - ...
-1
votes
3answers
289 views

Multiple files over at OutputStream [closed]

I have this assignment in my class where I have to create a Master/slave architecture, where master is a server that provides two files (password.txt and dictonary.txt). It sends these files to a ...
0
votes
2answers
2k views

Opening another .java file within a GUI

Short and sweet: I'd like to be able to run another .java file, from the click of a button in a GUI in Netbeans for Mac. A little more explanation: I am recreating a project I created when I started ...
2
votes
2answers
1k views

Uploading multiple images to GAE Blobstore using HTML5 multiple file input

I'm trying to store multiple image files to the GAE Blobstore using HTML5 multiple file input. Since my web application will be used by photographers to batch upload photos, it is absolutely ...
0
votes
3answers
1k views

Multiple file uploader with previews

I'm trying to find something that will let users upload multiple files to a website. The requirements are that it let them easily select multiple files (preferably with something like check boxes) and ...