I18n.jar still necessary?

A couple of years ago when I set up Jrun I discovered with the forum's help that I had to download i18n.jar separately to solve some internationalisation problems because it wasn't included in the SDK of the time.
I now have the latest 1.4 SDK and was wondering if anyone can tell me if i18n.jar is still a separate download. And if so where is the newest version?
Thanks for any help.

Going back to this link here: http://java.sun.com/j2se/1.4.2/docs/guide/intl/encoding.doc.html
Reading the documentation a little closer, I think you will see that there are two tables for the extended charset
1 - Supported by java.nio, java.io and java.lang APIs
2 - Supported by java.io and java.lang APIs
CP850 is mentioned in the latter of them - ie it is not supported by java.nio package
Your exception is coming from the java.nio package.
I don't know enough to specify a workaround except
- use a different charset
- don't use java.nio
Any other suggestions?

Similar Messages

  • Is an audio interface still necessary?

    I am using
    Logic Pro X, Samson L2400 24 channel mixer connected via USB, is an audio interface still necessary to record all 24 tracks separately?
    Noob hardly expresses my incompetence here so thank you for your patience.

    MacDyver wrote:
    I am very appreciative for the assistance however it confuses me slightly more in that I do have a Roland Octa-Capture however it also connects via USB. I guess it is also useless
    Articles I read state USB can theoretically carry 255 channels but everything else points to L/R Stereo.
    It appears a fire sale is in order and purchase of a firewire mixer or interface may be my only option
    Thanks everyone hope I can find a solution
    I don't quite get your conclusion: the fact that an interface connects via USB, does not make it useless. And according to a quick look at specs the octacapture aka UA1010 has 10 inputs; you could aggregate that with the Samson and another interface with at least 12 inputs, and there you have your 24 inputs: 10 from the UA1010, 2 from the Samson itself, and 12 from whatever extra interface you'd use.
    Getting one interface with 24 or more inputs may be a more secure and simpler route to take though.
    I also don't get why you almost blame our appreciated assistance - by "howevering" it - for confusing you about your 10-input audio interface, when you never even mentioned you had it in the first place?

  • I18n.jar missing in J2SDK 1.4.0 beta3 for Windows

    I have installed J2SDK 1.4.0 beta3 on a WinNT system. The jre\lib folder does not contain the file i18n.jar
    Also, I have tried to install J2RE 1.4.0 beta3 on a WinNT system. The i18n.jar is missing there too.
    The Java 2 SDK File Structure shows the file included in the jre/lib folder.
    I have Java 1.2 and 1.3 also installed on the same system.
    Can someone please tell me why this file is missing in my installation?
    Roopal

    It's not missing, they removed it. Most of the classes that were in i18n.jar are now in other jars such as charsets.jar.

  • Java version problem - where is i18n.jar in 1.4

    Hi there,
    I am using the old verion of generic java which requires i18n.jar. This jar file was in 1.3 but not in 1.4, can any one give me some idea what this jar file does. Thanks a lot.

    Read this: http://java.sun.com/docs/books/tutorial/i18n/index.html

  • Where is i18n.jar in J2sdk1.4.1 ?

    Hello,
    In j2sdk1.3 version, "i18n.jar" used to be in /lib directory. However i found this jar file missing in j2sdk1.4.2 version. Is it replaced by other jar file ?
    I couldn't find any information relating to this in SUN release notes. Can anyone help me on this ?
    Thanks in advance
    sangam

    I think it's called charset.jar now... or something similar.

  • What jars are necessary when building an Executable for JAXB??

    I'm using JWSDP-1.2. I get the following error when I try to run my executable: DefaultValidationEventHandler: [FATAL_ERROR] Document root element is missing. I was curious which jars are necessary when making an executable for JAXB. So far I have: 1)dom.jar, 2) jaxb-api.jar, 3) jaxb-impl.jar, 4)jaxb-libs.jar, 5)jaxb-xjc.jar, 6)jax-qname.jar, 7)namespace.jar, 8)relaxngDatatype.jar, 9)sax.jar, 10)xalan.jar, 11)xercesImpl.jar, 12)xsdlib.jar . Are there any jars I'm missing? I thought I might be getting the error due to a missing class. I've made sure that the XML document is readable and that it exists. The application runs fine in Eclipse, but when I make an executable I get the ERROR message.

    I'll have to read up on the doctype stuff, but I don't have anything like that included. Is it necessary? I read from the same XML document when I run inside Eclipse and also read the same document when I run the jar.
    Below is the XML document I use and below the XML code is the code I use for my schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <Information>
      <Employee number="1" TabPn="true">
        <FName>Jack</FName>
        <LName>Perry</LName>
        <Status>Part Time</Status>
        <Title>Software Developer</title>
        <DaysEmployed>
          <WorkDay>Monday</WorkDay>
        </DaysEmployed>
      </Employee>
      <Employee number="2" TabPn="true">
        <FName>Bob</FName>
        <LName>Smith</LName>
        <Status>Full Time</Status>
        <Title>Janitor</title>
        <DaysEmployed>
          <WorkDay>Monday</WorkDay>
          <WorkDay>Tuesday</WorkDay>
          <WorkDay>Wednesday</WorkDay>
          <WorkDay>Thursday</WorkDay>
          <WorkDay>Friday</WorkDay>
        </DaysEmployed>
      </Employee>
      <Employee number="3" TabPn="true">
        <FName>Fred</FName>
        <LName>Williams</LName>
        <Status>Full Time</Status>
        <Title>Sales</title>
        <DaysEmployed>
          <WorkDay>Thursday</WorkDay>
          <WorkDay>Friday</WorkDay>
        </DaysEmployed>
      </Employee>
    </Information>------------------------------------------------------------------------------------------------------------------------------------------------
    Schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <!--definition of simple elements-->
    <xs:element name="FName" type="xs:string"/>
    <xs:element name="LName" type="xs:string"/>
    <xs:element name="Status" type="xs:string"/>
    <xs:element name="Title" type="xs:string"/>
    <xs:element name="WorkDay" type="xs:string"/>
    <!--definition of attributes-->
    <xs:attribute name="number" type="xs:positiveInteger"/>
    <xs:attribute name="TabPn" type="xs:boolean"/>
    <!--definition of complex elements-->
    <xs:element name="DaysEmployed">
      <xs:complexType>
        <xs:sequence>
          <xs:element ref="WorkDay" maxOccurs="7"/>
        </xs:sequence>
      </xs:complexType>
    </xs:element>
    <xs:element name="Employee" >
      <xs:complexType>
        <xs:sequence>
          <xs:element ref="FName"/>
          <xs:element ref="LName"/>
          <xs:element ref="Status"/>
          <xs:element ref="Title"/>
          <xs:element ref="DaysEmployed"/>
        </xs:sequence>
        <xs:attribute ref="TabPn" use="required"/>
        <xs:attribute ref="number" use="required"/>
      </xs:complexType>
    </xs:element>
    <xs:element name="Information">
      <xs:complexType>
        <xs:sequence>
          <xs:element ref="Employee" maxOccurs="unbounded"/>
        </xs:sequence>
      </xs:complexType>
    </xs:element>
    </xs:schema>

  • Heatsink replace still necessary or not?

    after getting rid of the rss with the help of firmware - is it still necessary to replace the heatsink?

    Halli,
    Thanks for the link.
    The article came out on September 6th, so the firmware update it refers to is the previous one.
    The writer's understanding of the issue seems to be a little patchy. For Example:
    • He refers to the "CPU thermometer itself". In fact there are four heat sensors built into the CPU, but none of them are involved here. The problem is with one of the two thermistors which are part of the heat sink assembly.
    • Any short circuit is likely to be caused by the insulation on the thermistor's leads being damaged by heat rather than by expansion of the heat sink.
    • There was no relocation of the sensor and cable on the new heat sink, just added protection.
    I can't see any reason at all for a recall now; most people are not affected by the issue and most of those that are can easily fix it in one minute with the firmware update.

  • HT1386 Is it still necessary to sync to your desktop iTunes?

    I would like to load Windows 8 Release Preview to my Dell PC.  I also have an iPad and iPhone - which I'm assuming will not be able to be synced any more, when I do that.  Is it still necessary to do a sync to iTunes, or can these devices now stand on their own, with the advent of iCloud, iTunes Match, and so on?

    Thank you, my friends.  I'm going to save my dough and buy an iMac, which is what I really want anyway.  There is just far too much uncertainty at this point surrounding Windows 8, not only with regard to iTunes but other key pieces of software as well.  The disclaimers and warnings Microsoft is publishing about the release preview make my hair stand on end.
    I'm not a techno geek and have no interest in being.  I do like for things to work the way they're designed, with no surprises.  Which is why the iPad and iPhone seem close to miraculous.
    Thanks again, folks.

  • Is sapjco.jar still valid in EP7?

    Hi,
    I'm migrating some EP5 iViews to EP7 and want to know if I should still include sapjco.jar in \dist\PORTAL-INF\private\lib or whether this have been superceeded by another .jar in EP7?
    Strangely enough we are running EP5 iViews on EP6, and have a version of sapjco.jar from Service Marketplace. Should I continue to use this or is there a newer version of this jar delivered with EP7? I searched by EP7 installation jars but couldnt find sapjco.jar as part of the installation.
    Any advice appreciated.
    Cheers,
    Steve

    Yeh, I got it working. I was just doing something dumb. The UI to insert it
    will be a nice addition. Overall, I love the app. It has more than doubled
    productivity for heavy web UI stuff
    "M7 Support" <[email protected]> wrote in message
    news:42018e36$[email protected]..
    yes <%-- <nitrox:var name="query"type="com.drillinginfo.search.AbstractQuery"/> --%
    should work, it is not?
    btw, we added a ui to insert this construct which will be available in the
    final 2.0 release (expected by mid Feb.).
    M7 Support
    "Alan Berezin" <[email protected]> wrote in message
    news:4201445b$[email protected]..
    Can I do this still in nitro to make a object visible at design time? I
    am
    setting some objects in the pageContext in a scriptlet inside my jsp page
    and nitro b352 doesnt seem to see it.
    %-- <nitrox:var name="query"
    type="com.drillinginfo.search.AbstractQuery"/> --%

  • Are screensavers still necessary?

    Is a screensaver still needed? I have a Mid 2013 13" MacBook Air. I'm curious if I need to be concerned with using a screensaver. I use one when I'm in public or around others, just to ensure privacy and all. But when I'm alone, can I just turn off my screensaver? Is there a possibility of image retention or screen burn in from not using a screensaver on modern displays?
    Thanks for any direction you can provide.

    pmpknetr21 wrote:
    Hey OGELTHORPE,
    If memory serves me right, screensavers were originally created to ensure that older CRT monitors would not experience burn in or image retention when left on a particular screen for too long. Considering that, it begs the question, are they still needed for computers with modern monitors?
    I have noticed a few retina MBP owners raise the issue if image retention on their displays so perhaps for them it is an issue.
    Or will I damage my MBA screen if I do not use a screensaver?
    Though not 'proof positive' I have not seen any such complaint for 'ordinary' led MBPs or MBAs nor have I witnessed any such issue with my equipment.  One could argue that it may not be necessary, but then a nice screen saver does have some entertainment value.    I can leave it for each individual to decide if they want it or not.
    Ciao.

  • Is it still necessary to use a third party app in order to stream SiriusXm radio signal via iTunes?  Would like to use iTunes to handle the signal and send out to remote speakers?

    Is it necessary to use a third party app in order to stream SiriusXm signal via iTunes to my remote speakers?

    Is it necessary to use a third party app in order to stream SiriusXm signal via iTunes to my remote speakers?

  • Is the XSKey in Logic 9 still necessary

    Do I still need my XSKey with Logic 9 (I had it from Logic 7)?
    I took it out and Logic still seems to work.

    If Logic Pro 9 is a full new application or an upgrade, it is in itself a full application and requires no earlier version of Logic or an Xskey. Contrary to the install instructions which are wrong.
    I have a new Mac Pro and installed an upgrade from LP7 to LP 9 and it required no Xskey or LP 7 or 8.
    It works perfectly and imports projects from LP 7.
    And just for good reason I installed OS 10.5.8 (Leopard) and I don't have any of the issues that appear on the forum with people running 10.6 SL
    All the best and long live Logic Pro, 7 or 9

  • Still necessary to manually install kernel modules with CUPS?

    I'm just setting up my system with CUPS for printing. In the "Configuring CUPS" section of the wiki, you're instructed to install the appropriate kernel module with modprobe for using a usb or parallel port printer. With my usb printer and kernel 2.26.9 I found this is unnecessary. Plugging in the printer caused the module to automatically load. Is this because I'm using input hotplugging? And in any case, should the wiki be edited to reflect situations where loading the module manually is no longer necessary?

    Sure, feel free to edit the page to reflect what you're seeing, which is udev autoloading the appropriate module when it detects the device. This functionality has been in place for a long time, and is not related to input hotplugging as used in xorg (not sure if that's what you're referring to above).

  • Which groups are still necessary?

    Hello guys,
    from the beginning of my arch usage I'd put myself into the groups the beginners guide recommended. But which of them are today still useful and which of them simply unneeded?
    Here's my list of groups I'm in:
    [orschiro@thinkpad ~]$ groups
    network video audio optical storage users abs
    To concretise my question: would my network still work when I'm not in network or would my intel graphic setup with kms display everything correctly when I'm not in video? Would I have sound without audio group? [...]
    Best regards
    Last edited by orschiro (2010-05-24 08:26:59)

    dmz wrote:Why have a group named after your name? Confusing.
    Hmm...  never really thought about it.   It is the default bahaviour in Fedora/Ret Hat.
    > groups
    users
    Does anyone actually find the users group useful?  Especially if everyone is a member....    Giving everyone permission for something can be handled with standard file permssions.

  • HT3991 is backup 3.2 still necessary?

    Using Time Machine and a separat harddisk to make my backups, do I still need Backup 3.2 or may I cancel it?

    Nope.  Time Machine basically replaced Backup.  Backup had the ability to back up online to MobileMe which Time Machine didn't but with MobileMe now being gone I struggle to find anything worth keeping about Backup, and I come up empty

Maybe you are looking for

  • The application Contacts does not allow me to add a New Contact

    After adding a New Contact I suddenly discovered that once closed and reopened the Contacts application did not retain it. I then repeated the procedure three times. Yes, I remembered to click on Done after completing the entry. Thank you for any ass

  • How to detect the OS version and the hardware info??

    Hi all, according to the project needs, I to know how to detect OS version and the hardware info. The point is to detect client's OS version, weather Win98, 2000, XP, Vista. I have been search the information for several days already. But can not rea

  • Query regarding BOM

    Hello All,      I need to know how are the values for component materials which are entered through transaction ME39 captured and also how are they linked with the purchasing document?     I am writing a report for downloading the PO data in which i

  • Empties Management Configuration

    Hi SAPiens If anyone has worked on configuration of Empties Management either in Food or Beverage Industry, then kindly tell me, what are the configuration settings are needed to setup Empties Management. Also, there is transaction code /BEV1/EMS - w

  • Any clue?

    How can I use Person and Trip tables in Travel database acrossing two pages. In my Page1.jsp,PersonRowset is bound to dropdown list and TripRowset is bound to DataTable . In the next page, I want to show more colums of the Trip table response to the