ISO-8859-1 Special Characters turn to Question Marks; How to post Resumes?

I am building a web based application and I have a TextArea in an HTML form. Users can copy and paste their resumes (source - Microsoft Word Docs) into this text area. Once the resume is posted, tomcat handles the request. The request is posted to another JSP, Struts Action Class (Any Java Class that can write to a database).
When I do a System.out.println(request.getParameter("resume")); I the special characters like bullets and quotes and a bunch of others are getting transformed to Question Marks. When I insert the resume into an Oracle Database (into a clob field) they are still being saved a question marks.
I have a JSP Page that displays the posted resume. It has 2 things - It writes the request.getParameter("resume") to the HTML and this comes out fine. But when it writes the resume that is retrieved from the oracle database, i am getting back question marks.
I understand that Java uses unicode for character encoding/representation and I tried changing my HTML page's charset to UTF-8. Did not work. I see that there are a million websites that let users copy and paste their resumes. How are these resumes stored and retrieved from a database using server side java? Any help will be greatly appreciated.
Thanks,
-kal

The characters that the character set "ISO-88591-1" supports are as follow. Confirm your characters are in the range:
0x0 0x1 0x2 0x3 0x4 0x5 0x6 0x7 0x8 0x9 0xa 0xb 0xc 0xd 0xe 0xf 0x10 0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19 0x1a 0x1b
0x1c 0x1d 0x1e 0x1f 0x20 0x21 0x22 0x23 0x24 0x25 0x26 0x27
0x28 0x29 0x2a 0x2b 0x2c 0x2d 0x2e 0x2f 0x30 0x31 0x32 0x33 0x34 0x35 0x36 0x37 0x38 0x39
0x3a 0x3b 0x3c 0x3d 0x3e 0x3f 0x40 0x41 0x42 0x43 0x44 0x45 0x46 0x47 0x48 0x49
0x4a 0x4b 0x4c 0x4d 0x4e 0x4f 0x50 0x51 0x52 0x53 0x54 0x55 0x56 0x57 0x58 0x59 0x5a
0x5b 0x5c 0x5d 0x5e 0x5f 0x60 0x61 0x62 0x63 0x64 0x65 0x66 0x67 0x68 0x69 0x6a 0x6b 0x6c 0x6d 0x6e 0x6f
0x70 0x71 0x72 0x73 0x74 0x75 0x76 0x77 0x78 0x79 0x7a 0x7b 0x7c 0x7d 0x7e 0x7f
0x80 0x81 0x82 0x83 0x84 0x85 0x86 0x87 0x88 0x89 0x8a 0x8b 0x8c 0x8d 0x8e 0x8f
0x90 0x91 0x92 0x93 0x94 0x95 0x96 0x97 0x98 0x99 0x9a 0x9b 0x9c 0x9d 0x9e 0x9f
0xa0 0xa1 0xa2 0xa3 0xa4 0xa5 0xa6 0xa7 0xa8 0xa9 0xaa 0xab 0xac 0xad 0xae 0xaf
0xb0 0xb1 0xb2 0xb3 0xb4 0xb5 0xb6 0xb7 0xb8 0xb9 0xba 0xbb 0xbc 0xbd 0xbe 0xbf
0xc0 0xc1 0xc2 0xc3 0xc4 0xc5 0xc6 0xc7 0xc8 0xc9 0xca 0xcb 0xcc 0xcd 0xce 0xcf
0xd0 0xd1 0xd2 0xd3 0xd4 0xd5 0xd6 0xd7 0xd8 0xd9 0xda 0xdb 0xdc 0xdd 0xde 0xdf
0xe0 0xe1 0xe2 0xe3 0xe4 0xe5 0xe6 0xe7 0xe8 0xe9 0xea 0xeb 0xec 0xed 0xee 0xef
0xf0 0xf1 0xf2 0xf3 0xf4 0xf5 0xf6 0xf7 0xf8 0xf9 0xfa 0xfb 0xfc 0xfd 0xfe 0xff

Similar Messages

  • Special Characters shown as question marks

    Hi everyone.
    I have an iPhone 4 since December 2010 but im having a problem, everytime i recieve or send a text message with special characters such as:
    ñ á é ç ó etc... i recieve this characters with question mark (?) i called IUSACELL which is my carrier here in México and the told me that this is an iPhone problem because they ran somes test with some iPhones they have there and everything went fine. This is quite annoying.
    The problem showed up when i had iOS 4.3.5, now i'm iOS 5 Beta 5 and is still there!!
    Regards.
    Some images here.
    The word is "Llegué"
    The word is "Quedé"
    The word is "Años"
    The word is "Quién"
    PS. Sorry for my bad english

    Sounds that you have a problem with the font that is used to display those characters.<br />
    You can try some different default fonts (e.g. Arial, Verdana, Tahoma) to see if you can identify the not working font.<br />
    You will have to reinstall or refresh that font.
    *http://en.wikipedia.org/wiki/Punctuation
    *http://en.wikipedia.org/wiki/Dash

  • Mail with French / Spanish accented characters appear as Question marks

    Hi
    I am facing issues in mails that have French / Spanish accented characters in mail subject.Accented characters appear as Question marks (?) when received in the inbox.Mail subject is read from properties file.
    Please let me know the following
    - Should I have the entries in properties file in Unicode ? For example French accent character � is represented as &#225;
    - Should I replace msg.setSubject(subject); to msg.setSubject(subject,"UTF-8");
    Please suggest.
    Below is code snippet :
         Session session = getSession();
                   // create a message
                   Message msg = new MimeMessage(session);
                   // set the from and to address
                   InternetAddress addressFrom = new InternetAddress(from);
                   InternetAddress[] addressTo = new InternetAddress[recipients.length];
                   for (int i = 0; i < recipients.length; i++)
                        addressTo[i] = new InternetAddress(recipients);
                   msg.setFrom(addressFrom);
                   msg.setRecipients(Message.RecipientType.TO, addressTo);
                   msg.setSentDate(new Date());
    *               msg.setSubject(subject);*
                   MimeMultipart mp = new MimeMultipart("related");

    String subject = "\u00C 9tat de l'inscription en ligne";You need 4 hex digits after \u. You only included 3.
    mailSubject = new String(subject.getBytes(), "UTF-8");
    message.setSubject(MimeUtility.encodeText(mailSubject,"UTF-8", "B"), "UTF-8");Remove the above two lines. You're trying to make
    this much too hard. All you need is:
    message.setSubject(subject, "utf-8");
    Should I use ISO8859_1 as Charset or UTF-8 ?I think the characters you're included are
    representable in iso-8859-1 so you can use
    that.
    I am using Outlook express as my mail client. Do we have to decode it ?No.

  • I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    Hold down the Option key while you boot your Mac. Then, it should show you a selection of devices. Click your flash drive and it will boot from that.

  • Export arabic character into csv file turns into question mark in sql dev

    Hi,
    I am trying to export a table's output that contains some arabic and english mixed data, when I try to export it in csv, all the arabic characters change into question mark (?) but the same export is working fine on .xls or .xlsx.
    Since we have to export a huge data and csv is much faster thar .xls, kindly let me know why it is happening and what is the solution for this.
    Well, we are on Oracle 11gR2 and Sql Dev is 3.1
    Appreciate your time and experience sharing.
    Regards.

    Hi,
    Since you say it works for xls but not csv, and the only applicable preference setting ( Tools|Preferences|Database|Utilities|Export|Encoding ) should apply to all export formats, I would imagine this is a bug. Especially if the encoding specified in Preferences is consistent with the client OS settings. I was not able to find any prior bug logged against the Export utility for this issue.
    I logged a bug for this:
    Bug 13993410 - FORUM: ARABIC CHARACTER ENCODING RESPECTED FOR XLS BUT NOT CSV
    Regards,
    Gary
    SQL Developer Team

  • Icon's On Desktop Turn To Question Marks ????

    Why some of the icon's on my desktop turn into " Question Marks " instead of thier proper/regular icon symbol ?
    iMac G5   Mac OS X (10.3.9)  

    Eric,
    Try this.
    One at a time, position the cursor on the icons that are misbehaving, hold down on the mouse, pull the icons onto the Desktop, and release the mouse. They should evaporate with a poof.
    Then, from wherever they are located on the Hard Drive, restart the applications, again one at a time.
    Once loaded, again position the cursor on their icons until a contextual menu appears.
    From that menu, select Keep In Dock.
    ali b

  • Why are my dock applications turning into question marks after restarting my macbook pro?

    So i have had my new MBP with retina display for a few weeks now, and everytime I shutdown or restart the computer, I have a bunch of question marks in my dock instead of my application icons. The question marks still show the name of the application under them, and after I click them they turn back into the proper icon. I noticed that they are only applications I have installed myself off the internet. It never happens to the applcations that came with my macbook, or apps from the mac app store. I have not moved the location of the applications i installed, so i dont know why the computer is having trouble displaying the icons. I am new to the mac operating system and am wondering if I may not have installed these applications properly. The apps that are constatly turning into question marks include Bittorent, VLC Player, PS3 Media Server, Air VIdeo Server, and the Dolphin gamecube emulator. I have looked all over the internet but i cannot find a solution. Please Help!

    When they go grey, it means that they have lost the location of the application that they represent.
    If you put your mouse over each one, it will tell you what application it is that it has lost.
    Go to wherever you have that application stored, usually the applications folder, and drag the icon of the application down into the dock. A new icon is created for you.
    Repeat with the other two grey icons in the dock.
    To remove the grey icons, left click and hold while you drag the icon out of the dock and onto the desktop. Release the mouse button and the icon will disappear in a puff of smoke.

  • BIP in Oracle EBS R12.1 - Characters displayed as question marks

    Hi,
    We have recently upgraded to EBS 12.1.1, and have noticed that since doing so some characters in PDF outputs (from BIP reports run in EBS) are being displayed as question marks.
    The Templates are created using the font Arial, and the characters that are being displayed incorrectly are 'long dashes' "–" (\endash) and where Microsoft Word has group three full stops together "..." (\'85)
    An Example, the text in MS Word and in the PDF when run using Oracle BI Publisher Desktop is:
    Three full stops ……………
    A long dash –
    A short dash -
    However the output in PDF when running the report in EBS is:
    Three full stops ?????
    A long dash ?
    A short dash -
    Has anyone come across this before, or does anyone know of a way to resolve it. I have tried uploading an Arial font file and creating mappings (although Arial already exists as a seeded font file) but this has not resolved the issue.
    Regards
    Carl

    Hello,
    Check if you have all necessary fonts under your jre/lib/fonts ($AF_JRE_TOP and $OA_JRE_TOP) on all your web and concurrent nodes. Or, try to copy the fonts from $FND_TOP/resource (check post install steps for XMLP 5.6.3). Mid-tier bounce needed after copy.
    Hope this helps.
    Rownald

  • When I duplicate or copy slides, my custom theme images turn into question marks.  Why, and how can I copy themes with slides?

    When I duplicate or copy slides, my custom theme images turn into big grey boxes with an 'x' through them and a question mark in the middle in their new destination.  When I go look at the master slides, I see that there are now two sets of masters, one for the my custom theme and a new one just like it, but with no images.
    How can I copy (or duplicate) my slides?

    OK, got it ...  the Power ON Factory reset procedures might have changed with GB ... 
    To get to a Factory reset using the Power up method:
    1.  Power Off phone
    2. Press & Hold the HOME Button
    3. Press and Hold the Power ON button.
    You come up to the Triangle with the Exclamation mark & android guy.
    Press BOTH the Up and Down Buttons at the same time.  This brings up the Blue menu of options.
    use the Up/Down arrows to scroll thru the choices. Press the POWER Button to Select the menu item you choose.
    You can harmlessly test this and just choose to Reboot without doing anything, just to see how it works in case you ever need to do this in the future.
    edit:  It was concluded in the test group that they changed this process to align it with the new DX2 as the camera button isn't hard-wired like it is in the DX. So likely they just wanted to make this process the same for both platforms.  At least it sounds like a good reason...

  • File has turned to question mark and info now lost

    i created a file and put it in my dock to hold all of my go pro videos before conversion.  the file has now turned to a question mark and won't open and i cannot find it in finder. i have tried plugging the go pro back in to see if it would work then but it won't. please help!!! this folder has all of my wedding videos in it!!!

    I have followed the instructions you performed:-
    Created a new folder on the desktop.
    Dragged it to the right hand side of the Dock. In the area that has the Trash and Downloads area, it will not go into the Applications area i.e. Mail, Safari etc, I did not expect it would.
    The important thing to note is that the New folder remained on the Desktop.
    I then dragged files into the folder in the dock, all OK so far, but note they were also in the same folder on the Desktop, i.e the Dock Icon was just an alias of the folder on the Desktop.
    I then trashed the folder on the Desktop and I was able to still access the files and add new ones even though the folder was in the Trash, i.e. the alias followed where I put the original file.
    I then emptied the Trash and tried to access the folder in the Dock, I got the Question mark.
    So did you trash the folder you had created on the desktop and then subsiquently emptied the Trash?
    If so that would follow exacty the test I did.
    If this is what as occurred you may be able to find some file recovery software that will get some/all of your photos back, I have no suggestions on what software to buy.
    If this is not what you did, I a sorry but I am out of ideas.
    Hope you get them back.

  • Why do Hebrew language characters show as question marks?

    On my office web, when an email from Israel is posted , the title is shown as question marks. When I respond or forward a Hebrew text it also comes up as question marks

    Mail encoding suffer from some problems that doesn't exists on the web. It is possible that you are getting these messages from outdated mail software that is unable to encode subjects correctly.
    If this is the case, you may get Hebrew messages correctly, but from some users get it with some encoding problems. I do remember that users whose used hotmail.com was affecting such problems, but I guess Microsoft have fixed it already. On the other hand, some popular web forums software that use email notifications sometimes doesn't encode subjects correctly, and this issue also apply to the software in use by some spammers (but I'd care less about spammers…).

  • Spaces turn into questions marks(?) on windows machines

    Hi.
    I am new to Macs and am more than impressed so far. I am working in an office that uses strictly PC's and when I compose an email in Mail my coworker sees spaces at the end of my scentances as question marks when reading my email in his Outlook. They are not present online in GMail etc.
    I am a bit of a rogue for using a Mac at work and want it to be seamless. I tried changing fonts and still same problem. Any ideas??
    Thanks
    MacBook   Mac OS X (10.4.6)   1GB RAM, 120 GB HD
    MacBook   Mac OS X (10.4.6)   1GB RAM, 120 GB HD
    MacBook   Mac OS X (10.4.6)   1GB RAM, 120 GB HD
    MacBook   Mac OS X (10.4.6)   1GB RAM, 120 GB HD

    Hi W. J.
    Thank you for your reply. I tried your suggestion and I when I go into Mail preferences I seem to be stuck on the 'Accounts' section. I remember being able to alter my preferences when I first set up Mail (I have three accounts on the go) but I can't get back to the other prefrences.
    I tried the suggetion that the next fellow suggested by going into terminal and it seems to have fixed my text problem and I can now use rich text. I am supprised that this is an issue since no one (even PC users) should be able to deny OS X's superiority over Win XP but these small incompatabilties are often what people use as an excuse not tomove to a Mac and Apple would do well to eliminate it (even if it is a weakness on the PC end).
    Thanks again for your help.
    MacBook   Mac OS X (10.4.6)   1GB RAM, 120 GB HD
    MacBook   Mac OS X (10.4.6)   1GB RAM, 120 GB HD

  • Songs w/ questions marks, how to get rid of all them easily.

    I have lots of songs that are somehow related to a previous libray. I have two copies of most songs, but, one copy has 'question' mark next to it when you attemp to play it, and it says it cannot locate original file, would I like to locate it. I just want to know how to easily delete/remove all the songs with questions marks.

    I wouldn't call this an easy answer- but there's a method to my madness. Hear me out.
    In your Music library, go to File > Show Duplicates. Sort by Song Name. You can select each one with the exclamation point next to it by holding down your Command key and clicking each one. When you've selected them all, hit Delete, and you're set. If you have selected all the right ones, it will NOT ask you if you want to move the files to the Trash.
    The reason this is preferable to some other method is that your missing song might contain metadata that your newer songs do not- like rating, grouping, genre, etc. If you Show Duplicates and have your important view options chosen, you can make sure you transfer all the right info from the old song to the new one.
    It's not elegant, but it works.

  • Pictures appear as small box with question mark; how to to display?

    I open a website which displays a small box with a question mark where pictures ought to be. Why is this? What can I do do display the pictures?

    Works fine here too, with Safari:
    Also working with FireFox and Chrome.
    And the individual pictures are jpegs:

  • SPAU Green Question Marks  How to solve it??

    Hi experts,
    Im upgrading my client system from 4.6C to ECC 6.0 version, and in the SPAU adjustments im facing several Note corrections with a green question mark, and 1 Function Module with the same issue.
    The problem is that either i try to accept modifications or reset it to original the green marks still stay's and i have no possibillity to solve this. If i click on the mouse button in the question mark a message appears with S:000 , but with no message class associated...
    Does anyone knows how to solve this issue?
    Thanks in Advance
    Best Regards,
    João Martins

    joao, please use the search function with key-words SPAU +green +question +mark.
    amongst others it will provide you with this thread:
    Issue with green question mark in SPAU after applying support pack
    which should solve your problem with the notes.
    about that FM i'm not so sure, but look up this one here:
    SPAU Green Question Mark
    Edited by: Mylene Euridice Dorias on Sep 14, 2009 1:21 PM

Maybe you are looking for

  • EDI - SAP BO Interface

    I need to import Purchase Orders from EDI to SAPBO as part of a new implementation . I want to know if exist a common way, wizard or script to do it.

  • Connecting IPOD 5 to mac/pc's -

    hi I installed my ipod on my PC when i hook it up to my friends mac to share songs via his itunes, he does not recognise it songs on my ipod are there in light grey but not 'clickable' can't transfer from his itunes (mac) to my iPOD (PC SET UP) THX f

  • User exit text issue in va22

    I had to display pop up window asking for REASON FOR CHANGE OF PRICE if user changes item level 'amount'.I used popup_get_values.Then that reason should be saved in TEXTS tab.I wrote code for that.But the text does not save into TEXTS tab's text for

  • BHOLD FIM Integration Fails on Database Configuration

    Gentlemen, I hope you are familiar with BHOLD FIM Integration because i'm having a headache trying to install it. FIM Service installed successful and so BHOLD Core. However, when i tried to install BHOLD FIM Integration and logged the error and can

  • Write Me a Curves Plugin to Match Colors

    I need some help.  Would someone be willing to write me a plugin function for CS3 or 4 windows? Here is what I need. I need to be able to produce a "Color Cast Adjustment Layer"... using Curves.   Heres what I mean.  Its for color retouching. I want