This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes HTML, CSS and JavaScript and the fly likes HTML Form Upload produces junk characters Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "HTML Form Upload produces junk characters" Watch "HTML Form Upload produces junk characters" New topic
Author

HTML Form Upload produces junk characters

Muralidharan Rajamani
Greenhorn

Joined: May 26, 2004
Posts: 1
I have a HTML for with 2 text fields and the upload control. When I give some swedish characters in the text fields and then select a file for upload, the swedish characters in the text fields are coming as Junk. I guess this problem will come for all international characters.

I also found that this problem is because of enctype="multipart/form-data" in form tag (i.e) < form enctype="multipart/form-data" ...>

could anyone please tell me how to solve this?
Eric Pascarello
author
Rancher

Joined: Nov 08, 2001
Posts: 15362
    
    6
Are you storing this in a database or just reading the values?
Anonymous
Ranch Hand

Joined: Nov 22, 2008
Posts: 18944
Originally posted by Muralidharan Rajamani:
I guess this problem will come for all international characters.

You might want to check your html document: make sure you have a dtd specified with the character encoding utf-8. This way it should work. But you must check the other end as well. Where do you load it to? The Oreily FileUpload Servlet works quite nicly.
Hth
;-) stw
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: HTML Form Upload produces junk characters
 
Similar Threads
File Upload help
Encoding problem with File Upload
Junk characters in field after submitting
About form submission
Action form is not populated while using html:form enctype="multipart/form-data"