vote up 0 vote down star

Whenever I try to attach any file from HTML page in web browser(either Google chrome or Mozzila) and send to Servlet, I'm getting just getting the name of the file without having it's complete path. If I make an attachment of any file from C drive, I'm not getting it's complete address. And whenever I try to send this file name to mail server, I'm getting an exception:

Caused by: java.io.FileNotFoundException: Hello.txt (The system cannot find the file specified)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(Unknown Source)
    at javax.activation.FileDataSource.getInputStream(Unknown Source)
    at javax.activation.DataHandler.writeTo(Unknown Source)
    at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1381)
    at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:852)
    at javax.mail.internet.MimeMultipart.writeTo(MimeMultipart.java:452)
    at com.sun.mail.handlers.multipart_mixed.writeTo(multipart_mixed.java:98)
    at javax.activation.ObjectDataContentHandler.writeTo(Unknown Source)
    at javax.activation.DataHandler.writeTo(Unknown Source)
    at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1381)
    at javax.mail.internet.MimeMessage.writeTo(MimeMessage.java:1742)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:737)
    ... 18 more

How can I get rid of this problem? How to get the complete address of my uploaded file?

flag
1  
why do you need the complete path? – skaffman Nov 5 at 8:12
I need it because I want to send the mail as an attachment. – Unknown Nov 5 at 8:12
Suppose you got the path of that file. Now what can you do sitting on the server. You can't access the clients machine who uploaded the file. I hope you are getting my point. – Vinegar Nov 5 at 8:30
Have you set the form enctype="multipart/form-data"? How are you parsing the MIME data sent from the browser? – McDowell Nov 5 at 10:12

3 Answers

vote up 2 vote down

Even if you were to obtain the full path, it would be the path of the file on the client's machine, which the server has no access to.

If you want to store the uploaded file on the server, then you need to store the uploaded file on the local server filesystem, then pass that to the JavaMail API.

link|flag
vote up 0 vote down

This is the expected behaviour. Try the links below to get an example of sending mail with attachment.

Okay, it seems you are having trouble in uploading the file. I mean when the file doesn't reside on the server and you must ask that from your web app client.

You can do something like this. When the user hit the button send. You take everything from the browser and use your code to format a mail. This will include the file/s specified by the user. After getting all the things right. Just send that mail. Where is the problem?

You might like to use apache commons fileupload, to upload the file.

link|flag
I already looked over those links. I can send mail as an attachment where I have to explicitly specify the name of the file as in your both links. But what about send the mail as an attachment to mail server where browser uploading the file? Why browser stripping out the complete address of the file. – Unknown Nov 5 at 8:30
Because once it is uploaded the path is of no use. At that point file is already on the server. Why the server need the client's path. – Vinegar Nov 5 at 8:32
Suppose you got the path of that file. Now what can you do sitting on the server. You can't access the clients machine who uploaded the file. I hope you are getting my point. – Vinegar Nov 5 at 8:44
vote up 0 vote down

To the point: you should not send the file path, but you should send the file contents.

Imagine that I am the server and I have a file path "c:/passwords.txt" here at my local disk system, can you as being the client tell me what its contents are?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.