Some characters from xerces are ?. j2sdk1.3 doesn't do this.

Hi,
I used to use j2sdk1.3 and now I'm using j2sdk1.4.1, and I wrote a program befor that uses Xerces that reads various strange character entities which are then stored in a hashmap with the idea of translating certain weird characters into normal character entities. Example:
<pair from="&#xd2;" to="&lsquo;"/>
Now when I receive the data from Xerces, the &#xd2; has been changed into a ? and apparently this is a Java issue and not a Xerces issue.
Does anyone know why this is occurring and better yet know of a way to have the former behavior?
Thank you.

This may be related to
Sun bug#4646959
http://developer.java.sun.com/developer/bugParade/bugs/4646959.html

Similar Messages

  • Some photos from iPhoto are not appearing in iMovie

    I have successfully imported over 2,000 pictures from iPhoto into iMovie. However, my latest attempt did not work- these photos were from a CD scanned by somebody else. The photos are in iPhoto, but when I pull up the folder in iMovie, it is blank.
    Any idea why??? Thanks.

    You should be able to tell in iPhoto. If not, right click on the photo in iPhoto and select "Reveal in Finder". You should see the file. Right click on it and select "Get Info"

  • Every time I open Firefox I get a new page with an ad for Walmart I can't seem to stop it from happening. It doesn't do this with any of my other browsers, however I prefer Firefox.. can you suggest how I can stop this from happening.

    I have to close this "other page" before I can use Firefox
    It's annoying and is preventing me from using Firefox as my regular browser which I would prefer to do.
    Also any scans I've made with virus or hidden ads has come up negative.
    I'm at a loss to fix this.
    Can you help?

    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

  • When typing in firefox, some keys,(space, Enter), are recognized after several seconds.This happens at a ASUS X57V with Windows Vista Home Premium SP2 . How to resolve?

    I noticed this problem only in this computer .
    Ihave tous eanotherbr owser .
    I wrote the sentence above without waiting for the space delay

    I noticed this problem only in this computer .
    Ihave tous eanotherbr owser .
    I wrote the sentence above without waiting for the space delay

  • Safari is not showing some images from web properly

    Hi. Since last week some pictures from web are not showing properly on safari & mail apps.
    Whenever I go to websites with relatively many images, some of the images are only showing top halves and the bottom halves are solid black.
    This has never happened before.
    As it was so annoying, I've tried deleting safari history, cookies, and web data, and I also tried network reset.
    None of them worked.
    What's weird is that this issue doesn't happen when I'm using wifi, but happens when I use LTE.
    My signal dots are full 5, and LTE is still faster than my wifi.
    what can I try next?

    You can fix the issue temporarily by going to Settings > Safari > Clear History and Website Data.  Note that this will log out of any website you were logged in to, and will clear your browsing history (if you use suggested websites from your history when going to new pages), but it will reset the cache containing the incorrect images.
    Another way to fix this issue temporarily is to use Settings > Safari > Advanced > Website Data and swipe to delete only those domains that have incorrect images.  This does the equivalent of clearing website data, but only for the specific site removed.  Note that images are frequently served from different domains than the host site, so you must clear the domains where the images are stored.  Also, this page doesn't have a way to filter the list, so you must look through it manually, which is why I don't suggest it as the first option.
    BTW, the majority of posts reporting this issue appear to be AT&T customers.

  • Strip Characters from String?

    Hi,
    How can I strip off some characters from the end of a string?
    I am not very good at regular expressions but perhaps I may not
    need one? Here is the data
    first_name_510
    last_name_2267
    I need a function that will strip off everything from the
    right including the underscore. I should be left with the below:
    first_name
    last_name
    Any help highly appreciated
    Regards

    if it is always an underscore, and always the last one, this
    should do
    the trick:
    #left(string, len(string)-len(listlast(string, "_"))-1)#
    string is assumed to be the variable holding your text
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • Change some code from as3 to as2

    Hi, I want to use as2 because it compatible with my website.
    I want to change some code from as3 to as2
    /////////////////////////////image1//////////////////////////////// if(MovieClip(this.parent).imagetxt.text == "a") {     var imgurl:String = "C:/Users/Thái/Desktop/ls/cotton-1.jpg";     var myrequest:URL = new URL(imgurl);     myloader.scaleContent = true;     myloader.load(myrequest); } /////////////////////////////image2//////////////////////////////// else if(MovieClip(this.parent).imagetxt.text == "b") {     var imgurl2:String = "http://aloflash.com/images/upload/3.jpg";     var myrequest2:URLRequest = new URLRequest(imgurl2);     myloader.scaleContent = true;     myloader.load(myrequest2); }thank you for your support.

    use:
    var myloader:MovieClip=this.createEmptyMovieClip("loader_mc",this.getNextHighestDepth());
    if (MovieClip(this._parent).imagetxt.text == "a") {
        var imgurl:String = "C:/Users/Thái/Desktop/ls/cotton-1.jpg";
        myloader.load(imgurl);
    } else if (MovieClip(this._parent).imagetxt.text == "b") {
        var imgurl2:String = "http://aloflash.com/images/upload/3.jpg
        myloader.load(imgurl2);

  • HT1382 i got an iPad and all my app's, music,  and movies are on it, but when i try to download some apps to mi iPhone, they doesn't appear on the purchased tab, how could i move them back to itunes so i can access thru iCloud?

    i got an iPad and all my app's, music,  and movies are on it, but when i try to download some apps to mi iPhone, they doesn't appear on the purchased tab, how could i move them back to itunes so i can access thru iCloud? i have an 2nd generetion ipad and an iphone 5, thanks for you answers!

    (I think the daughter got he better end of the deal!)   I believe if you change the password and user id one of the devices it will stop that from occurring. But I'm not the one to tell you how to do it; someone like "Illaass" (Illaass seems to know how to correct / fix almost anything!) will know how if you don't. Just look for the "cat" icon.

  • TS4036 I purchased an iphone for my daughter and we are using the same account and she deleted some contacts from her phone and they were deleted off of my contacts as well. Is there a way to use icloud backup to reinstall the contacts to my phone?

    I purchased an iphone for my daughter and we are using the same account and she deleted some contacts from her phone and they were deleted off of my contacts as well. Is there a way to use icloud backup to reinstall the contacts to my phone?

    Welcome to the Apple community.
    You can only restore them from a Computer backup. This has occurred because you are sharing an iCloud account. ideally you should each have your own iCloud account, that way you can each manage your own mail, contacts, calendars, documents etc and avoid unintentional deletions and unwanted editing. If there is information you wish to share between you, this can be done with a secondary account.
    Having separate iCloud accounts, doesn't mean you have to have separate iTunes accounts, so whilst you keep your personal data separate, you can continue to share music, apps, books, TV shows, movies etc.

  • HT4623 I updated my mini, but some of my apps are no longer available. One of them I purchased from the Apple store.  They are grayed out with the word "waiting" underneath the app.  Any suggestions?

    I updated my mini, but some of my apps are no longer available. One of them I purchased from the Apple store.  They are grayed out with the word "waiting" underneath the app.  Any suggestions?

    If there are multiple apps trying to download at once, only one can download at a time and the rest say "Waiting" until it is then their turn. Try this. Double tap the icon of the Waiting app, and it should resume the download.
    How to Solve the Problem of An iPad App Download Stuck on “Waiting”
    http://ipadacademy.com/2012/06/how-to-solve-the-problem-of-an-ipad-app-download- stuck-on-waiting
    How To Get Rid Of Your iPad App Download Frozen Problem
    http://www.sidelineapple.com/how-to-get-rid-of-your-ipad-app-download-frozen-pro blem-and-not-lose-years-of-your-life-video/
    Another thing to try - Turn the iPad Off & then back ON.
    If that doesn't work:
    •  Log out of your iTunes store account.  Go to Settings > Store > Sign Out Then press the Home button.
    • Then press and hold the Home and Sleep buttons simultaneously and don't release them when it brings up the Turn Off screen; keep holding them until the Apple logo appears.
    • After restart, the Waiting should be gone.
     Cheers, Tom

  • Why after exporting PDF to Word some characters are not displaying accurately.

    I exported a PDF to Word and it changed the case of some of the characters from upper case to lower case and even changed the font. In some areas the kerning is wonky too. What do I need to do differently?

    Very likely you are not needing to change anything. Some variation in output can be found depending on the data structure of the file involved.
    Will Adobe ExportPDF convert both text and formatting information?Adobe ExportPDF is capable of exporting high quality information,  but the quality of your Word document depends on the quality of the PDF  file you start with. For instance, if your PDF file was originally  authored in Microsoft Word and converted to PDF using the PDF Maker  functionality in Adobe Acrobat® software, your PDF file contains a rich  set of information that can be captured by Adobe ExportPDF. This  includes relative positioning of tables, images, and even multicolumn  text, as well as page, paragraph, and font attributes. If your PDF file  was originally authored using simpler PDF generation methods, such as  “print to PDF” or “scan to PDF” options, Adobe ExportPDF will convert  any recognizable text and then use sophisticated conversion intelligence  to preserve as much of the page layout as possible.

  • Some characters are shown as boxes

    Hi,
    What can be wrong with PDF/computer. In the attached picture there are fragments from one PDF which in adobe reader (10.1.3) shows boxes instead of characters. Opening same pdf with different program, I get correct result.

    Extended font pack didn't solve the problem. Odd thing is that some characters in the middle of the string are missing and same character A is shown in the beginning, but not in the middle. When looking to document properties, it shows as used fonts as in attached picture.

  • I have some apps on my ipad and I want to install more ,but it doesn't show the apps on the home and when I try to open them from the AppStore it doesn't work , what should I do?

    I have some apps on my ipad and I want to install more ,but it doesn't show the apps on the home and when I try to open them from the AppStore it doesn't work , what should I do?

    Are you not seeing the icon of the app you just downloaded (it happens sometimes, and the quick fix is to reset your iPad)? Or are you running out of space on your iPad?

  • Account shows 5 computers used , some of these computers are gone , however, iTunes doesn't give me an option to de authorize all. Any ideas ???

    Account shows 5 computers used , some of these computers are gone , however, iTunes doesn't give me an option to de authorize all. Any ideas ???

    Is the following not working for you?
    For computers:
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "Deauthorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "deauthorize all" your authorized computers, authorize each one as required.

  • After migrating data from Time Machine, some of my photos are not showing up in iPhoto. I get a 'dashed rectangle." When I click on it I get ' ! in a Triangle" When I click on that, I actually can see the photo. I want to see my photos

    After migrating data from Time Machine, some of my photos are not showing up in iPhoto LIbrary view. I get a 'dashed rectangle." When I click on it I get ' ! in a Triangle" When I click on that, I actually can see the photo. I want to see all  my photos in 'Library' view, and I can't figure out how these photos seem to be arbitrarily hidden. Help, please.

    Try these for the first attempt:
    First be sure to have a backup copy of the library if you already don't have one.
    OT

Maybe you are looking for

  • Sudden slow down in data transfer

    I'm reading data from the hard disk on a Target PXI System (8106 RT) and sending it via Ethernet to a Host PC and writing it to its hard disk. I read a chuck of data from the Target, send it using TCP Write function. The Host uses the TCP Read functi

  • How come Mac OS X's Software Update doesn't show a total time ETA and size?

    Hello. I noticed when downloading big updates from Mac OS X 10.5's Software Update, it doesn't show the TOTAL time left and size. It only shows the individual updates (e.g., iTunes). Is there a way to show the totals especially when downloading takes

  • Are Microsoft Experimental Collections 1.0.3 supported on Windows 7?

    Hello! According to the info here: https://www.nuget.org/packages/Microsoft.Experimental.Collections these collections are not supported on Win 7. Still, I need to be sure so I've decided to ask my question here. Thanks in advance!

  • Download display driver

    mujhe display driver ki link chahiye mera model name h hp 250 G3 laptop,product no. J7V53PA#ACJ Serial no. [Personal Information Removed]     plz ans me

  • Dreamweaver Portfolio

    I started a new Dreamweaver site to showcase my portfolio. I liked what was going on with Lightbox/FancyBox and was messing with that. http://fancybox.net/ My question is is there a better way or something to have a page of thumbnails but some be ima