Swedish Chars ? ÅÄÖ

What happened to the swedish characters?
When i use a music playlist with a Swedish album,
the chars go crazy where there should be åäö or ÅÄÖ.
Apple: Please correct this in next update.
Anyone: Having the same problem?

I'd send a report here:
http://www.apple.com/feedback/appletv.html
apple developers do not officially read the forum, so if you have an issue best to let them know via the link.
AC

Similar Messages

  • I need to put a ZipEntry with swedish chars...??

    I have some problems creating ZipEntry to a ZipOutputStream with file names with swedish characters. Strange characters were placed instead original ones.
    I try to put in Unicode format, but the result is the same. I could see that the problem is after '\u007E' char.
    I think this would not be a problem but really I try a lot of ways to get the correct result, but was not possible.
    Please, if someone have an answer please let me know asap. THANKS !!!!

    Yes, there isn�t any problem with the files. Internal file data is ok. But when you open the .zip file, the names of the entries were changed.
    eg:
    I process the files to zip and the original name is "FormsOLE������.pdf", when you open the .zip file the entry look like this "FormsOLE-+�Ss+.pdf".
    This "������" are swedish char and I didn�t found the way to write the file name IN the zip file correctly...

  • Swedish chars ��� not working under Solaris

    Hi All,
    I created the following little code and it is not working under Solaris 7, JDK1.4.1_01. (also tested some other but does not work)
    public class HelloSweden
    public static void main(String [] args)
    String newName="���";
    String charsetName = "iso-8859-2";
    byte [] s = {(byte)229, (byte)228, (byte)246};
    try
    newName = new String(s, 0, s.length, charsetName);
    catch ( java.io.UnsupportedEncodingException e )
    System.err.println(e.getMessage());
    e.printStackTrace();
    System.out.println("new name is: "+newName);
    for(int i=0; i<newName.getBytes().length; i++)
    System.out.println(i+"."+":"+newName.getBytes());
    The problem is that on Solaris 7 the output is:
    new name is: ???
    0.:63
    1.:63
    2.:63
    Whereas on Linux it works fine:
    new name is: ���
    0.:-27
    1.:-28
    2.:-10
    I also tried the "javac -encoding iso8859-1" option but no use.
    Could anybody help?
    Thnx,
    GF

    I also tried the "javac -encoding iso8859-1" option
    but no use.
    Was the output exactly the same or were the numbers correct, at least?
    You may need to compile with:
    javac -encoding ISO-8859-1 ClassName.java
    and then run with:
    java -Dfile.encoding=ISO-8859-1 ClassName
    You can set the character encoding explicitely like that. The character encoding depends on locale settings; if you set LC_ALL to a Swedish locale ("sv_SE"?) javac and java should start using the correct encodings automatically.

  • I can't see Swedish chars on irc and nobody can see mine!

    I use OS X 10.4.5 and X-chat Aqua. Now, when other Swedish people type Swedish characters in the chat, I can't see it. They say that they are using Mirc for Windows XP. Also, they apparently can't see mine (they see question marks instead, while I just see blanks).
    I could, however, see the Swedish characters of a Linux user.
    I was told tha this is because I type in UTF-8, but I can't understand why I can't see the Swedish characters from others.
    Anyway, this naturally needs fixing, so how can I fix this?

    You can use these steps to check if images are blocked:
    *Open the web page that has the images missing in a browser tab.
    *Click the website favicon ([[Site Identity Button]]) on the left end of the location bar.
    *Click the "More Information" button to open the "Page Info" window with the Security tab selected (also accessible via "Tools > Page Info").
    *Go to the <i>Media</i> tab of the "Tools > Page Info" window.
    *Select the first image link and scroll down through the list with the Down arrow key.
    *If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.

  • Problems displaying swedish characters !

              Hi !
              I have a very strange problem, which I have been struggling with for a while now.
              I have a JSP page which calls Java classes to generate a HTML table. I define the
              basic structure of the table in the JSP file, such as which fields should be in it etc..
              The Java classes makes a call to an Oracle database and fetches the records in a
              recordset.
              On the JSP page I call a method which generates the HTML table from the recordset
              and returns a string to the page. I have a lot of swedish characters in some of the
              columns, and they display fine. At least when the table is not that big....
              Example:
              I populate the table with 24 records and swedish chars (åöä) looks ok, but when I
              populate the table with 25 records the swedish chars displays as jibberish.
              For example: 'ö' => 'ö'
              What seems strange to me is that it looks like its depending on the amount of data
              that I return to the JSP page. In the logfiles all characters seems to be ok.
              Content-Type is set to 'iso-8859-1', if I change to 'UTF-8' they look ok.
              Unfortunately I cannot set UTF-8 as the content-type due to
              restrictions on the rest of the website.
              And since it seems that if I only send a smaller amount of data
              to the browser it looks ok, so there must be some way out of this...
              Has anybody got any clues ??
              regards,
              /Magnus
              

    Solved the problem....
              I did not use the PrintWriter in the 'response' object to write the HTML-table, I
              simply just sent out a big string to the page which got corrupted when reaching
              a certain size.
              Solved it by using the PrintWriter instead.
              /Magnus
              Magnus Rosenquist wrote:
              > Hi !
              >
              > I have a very strange problem, which I have been struggling with for a while now.
              >
              > I have a JSP page which calls Java classes to generate a HTML table. I define the
              > basic structure of the table in the JSP file, such as which fields should be in it etc..
              > The Java classes makes a call to an Oracle database and fetches the records in a
              > recordset.
              >
              > On the JSP page I call a method which generates the HTML table from the recordset
              > and returns a string to the page. I have a lot of swedish characters in some of the
              > columns, and they display fine. At least when the table is not that big....
              >
              > Example:
              > I populate the table with 24 records and swedish chars (åöä) looks ok, but when I
              > populate the table with 25 records the swedish chars displays as jibberish.
              > For example: 'ö' => 'ö'
              >
              > What seems strange to me is that it looks like its depending on the amount of data
              > that I return to the JSP page. In the logfiles all characters seems to be ok.
              >
              > Content-Type is set to 'iso-8859-1', if I change to 'UTF-8' they look ok.
              > Unfortunately I cannot set UTF-8 as the content-type due to
              > restrictions on the rest of the website.
              >
              > And since it seems that if I only send a smaller amount of data
              > to the browser it looks ok, so there must be some way out of this...
              >
              > Has anybody got any clues ??
              >
              > regards,
              > /Magnus
              Magnus Rosenquist
              Mobile Mind AB
              +46 (0)63 12 49 30 (Phone)
              +46 (0)702 69 41 72 (Mobile)
              mailto:[email protected]
              http://www.mobilemind.se
              

  • E72: Swedish and other special characters not work...

    When I send mail through MfE, swedish and other special characters do not reach the recipient, they are just ignored. No blanks or nothing. Every word with a swedish character ends up one letter short.
    Before the firmware upgrade this was intermittent, happening only on about half of my mails.
    Now I upgraded yesterday, and it seems the problem is now permanent.
    Have seen similar posts from E75 and E90 owners, their problems seem to have been fixed by newer firmware.
    Our setup is: Exchange 2003, Portwise authentication.
    All other phone models work fine, like iPhone, E71 etc.
    /Sebastian

    After some testing I found out that if I use swedish chars in the subject line, it works fine. Even in the mail body.
    If I don't use swedish chars in the subject, they won't work in the body. I either get garbage or nothing where the swedish chars should be.
    The problem doesn't exist at all in my private IMAP mail account.
    Could someone who uses Mail for Exchange and have special chars in their alphabet (swedish, finnish, german, hungarian etc) pls tell me how it's working out for you?
    Message Edited by Seb_Martin on 28-Jan-2010 11:15 AM

  • New items not shown

    Portal 3.0.8 - Solaris.
    I'm adding item to my content area and everything looks good until the item is submitted. It is then not shown on my CA page.
    If I create a new CA page the items will appear. But then the same thing happens all over again when adding new items.
    Anyone have a clue ?

    I was just over to my client and found some things out.
    No, I did not clear my browser cache but set it to check the page on every visit. Items still invisible.
    The items are invisible in both view and edit mode.
    This client originally created a content area with the NLS params set for the wrong language (default which didn't handle swedish chars). They then created a new content area using the correct NLS params. All CA pages created for this new CA will render items invisible. Creating new CA pages will not change anything.
    If setting the CA to use the CA page originally created for the first (default NLS) CA all items will be visible.
    Are we homing in on the problem here ?
    And yes, all this is done using the PORTAL30 user.

  • Junk letters in foldernames

    Hi
    I use the default apache in OSX server 10.4.9.
    I have a ImageFolio4 installation that uses nothing but CGI-Perl, everything works fine except one thing, ImageFolio creates folders that are named by the user from within the webapp, but does not let me use non english characters.
    When i try to create a folder naming it with non english letters i get an "invalid argument" error message, if i name the folder with english letters there are no problems.
    I have one installation of ImageFolio4 on OSX server and one on IIS, and im frustrated to have to say that this problem only occurs on the OSX install.
    If i create the folder manually on the server, and then update the folder from within the webapp, the folder is added, but with junk letters instead of the swedish chars ö ä å.
    I have noticed that when i try to make folders using Terminal, ö ä å is not visible in the terminal window, just numbers, but on the server the folders are visible with the correct names, but in terminal the ä ö å is allways showed as numbers.
    Is there a connection here, cant OSX have folders created with non english letters except when i use finder?
    Mikael
    G5, Xserve, PB G4   Mac OS X (10.4.8)  
    G5, Xserve, PB G4   Mac OS X (10.4.8)  

    i feel you can do this by creating an image of the letters in paint and then follow this link
    Re: WATERMARK IN SAPSCRIPTS
    it contains about setting graphics in the background just like watermarks...
    hope it helps...
    do reward and get back if u need further assistance.

  • Character problms between Java/C++?

    Hi all,
    I have a Java app that is listening to a port and accepting connections, it than reads in the stream sent from the client and just print it out in the console window and returns an answer.
    The client I am using I have written in C++ and it just prints the reply from the Java app in its console window.
    All this works fine, except for when I'm sending special characters(e.g. swedish characters ??????) they get wrong. I have tried using different charset's, but I can't get it right.
    What should I do to get the special char's correct on both sides? I would like to do all the changes on the Java side (I'm not a big C++ fan...).
    The request string sent from the C++ client is 6 chars, the first three are the swedish extra chars in the alphabet compared to the english in lower case and the last three are the extra chars in UPPER CASE.
    When I'm using default charset reading the socket
    BufferedInputStream in = new BufferedInputStream(s.getInputStream());here's what I get when I print the request sent from the C++ client to a file:
    char 1: hashCode=338
    char 2: hashCode=352
    char 3: hashCode=353
    char 4: hashCode=65533
    char 5: hashCode=8364
    char 6: hashCode=8230
    here's what I get if a use UTF-8
    InputStreamReader in = new InputStreamReader(s.getInputStream(),"UTF-8");and print the request string sent from the C++ client
    char 1: hashCode=65533
    char 2: hashCode=65533
    char 3: hashCode=65533
    char 4: hashCode=65533
    char 5: hashCode=65533
    char 6: hashCode=65533
    here's what I get if I create the same String in the Java code and print it to a file:
    char 1: hashCode=229
    char 1: hashCode=228
    char 1: hashCode=246
    char 1: hashCode=197
    char 1: hashCode=196
    char 1: hashCode=214
    Greatfull for any suggestions...
    //Anders =)
    evidently this forum has the same problem (e.g. swedish characters ??????), all the questionmarks should be swedish chars...

    My default encoding in Java is Cp1252, and I
    have tried different encodings(UTF-8, ISO-8859-1....),
    but I can't read the characters correct.You can find encodings supported in Java on the following linked page.
    http://java.sun.com/j2se/1.4.1/docs/guide/intl/encoding.doc.html

  • Toggle kbd layout with switched caps/ctrl

    hi!
    i used to have this in my xorg.conf to have capslock toggle layout for typing swedish chars
    Option "XkbLayout" "dvorak, se"
    Option "XkbOptions" "grp:caps_toggle"
    now, i've switched caps and ctrl with this in .xmodmap
    remove Lock = Caps_Lock
    remove Control = Control_L
    keysym Control_L = Caps_Lock
    keysym Caps_Lock = Control_L
    add Lock = Caps_Lock
    add Control = Control_L
    the problem is that it makes the new capslock, former ctrl, just a capslock, which doesn't toggle the keymap.
    and if i run
    setxkbmap "dvorak, se" -option grp:caps_toggle
    the caps/ctrl are switched back. so how can i bind caps to toggle layout without overriding this?

    https://wiki.archlinux.org/index.php/Xf … ings_issue
    Is this the "issue"?
    I don't know... I don't use Xfce, I use Openbox. This is how I switch my keyboard layout:
    /etc/X11/xorg.conf.d/10-keyboard.conf
    Section "InputClass"
    Identifier "Keyboard Defaults"
    MatchIsKeyboard "yes"
    Option "XkbLayout" "us, ro(std)"
    Option "XkbOptions" "grp:alt_shift_toggle, grp_led:scroll"
    EndSection
    Alt+Shift works and it even lights up my keyboard's "Scroll Lock" LED. I'm absolutely fine with this setup.

  • So you see little squares insted of your letters in KDE ???

    Ok so i went like 2 hours to fix this , as i the forum there are lots of threads about this without the answer , i looked with fonts squares but nothing.
    Here is the thing , i need the letters á é í ó ú and also ñ , so i had them for example in firefox , xchat , and other gtk based apps. But when it came down to kde they where blank squares , for example in kedit , kwrite , run app , etc.
    the thing is because the locale is not well generated. so i went to the /etc/locale.gen and unncommented the lines with es_ES.utf8 , then afterthat i did locale-gen command , so that generated my en_ES.UTF-8 locale.
    edited the line on rc.conf , to match that locale and that was it !! now i have all my keboard letters working on kde and every other app
    thats it
    keywords - fonts - squares

    My first try at Arch and the only thing (so far) I got stuck on was the ability to write Swedish characters in KDE applications but still having the KDE language to be english.
    For quite some time I was able to enter Swedish characters (åäö) as part of the use name or password during the kdm login. Once KDE got up and runing all I got was dose small squares in place of the Swedish chars..
    And yes, I didn't realize I had to reboot for the changes to /etc/rc.conf to take place, just restart X wasn't a smart move 

  • IPhone: sectionIndexTitlesForTableView and non-ASCII chars

    You specify an array of strings for your section titles in your implementation of UITableViewDataSource method sectionIndexTitlesForTableView. However, it seems like if you have a string with non-ASCII characters, it is left blank (for example the Korean string "누리마루"). Anybody else encounter this issue?

    I bump Dr. Chucks thread for a similiar problem with non-ascii chars.
    The chars show up but the sorting is a bit off.
    Example: A, Å, B, ... Z
    Should be: A, B, ... Z, Å, Ä, Ö
    In Swedish Å (the letter Aring;) is one of the last letters and should not be placed after A despite being similiar.
    Any ideas?

  • FILE_DATASTORE and non-ASCII chars

    I have created an interMedia Text index
    with the FILE_DATASTORE option, so that
    interMedia treats table entries as
    filenames and indexes the corresponding
    file on the servers's filesystem.
    But whenever the filename contains characters
    which are not part of the US7ASCII charset (like dv| _), the file is not found. But both Oracle and the operating system support these characters.
    The Oracle instance uses UTF8 as internal
    characterset. The client which stores
    the filenames in the table uses the
    WE8ISO8859P1 charset. The values in the
    database table are stored and shown correctly
    when viewed with Oracle or Java client
    programs.
    So where does the charset conversion fail ?
    The names are stored correctly, they can be
    read correctly by clients, but the indexer
    seems to use a wrong charset to translate
    the filenames stored in the database into
    filenames of the operating system.
    Do I have to apply some additonal configurations to my indexer ?
    Greetings,
    Michael Skusa
    null

    I bump Dr. Chucks thread for a similiar problem with non-ascii chars.
    The chars show up but the sorting is a bit off.
    Example: A, Å, B, ... Z
    Should be: A, B, ... Z, Å, Ä, Ö
    In Swedish Å (the letter Aring;) is one of the last letters and should not be placed after A despite being similiar.
    Any ideas?

  • How can I select the last 2 chars of a string

    Hello all,
    I am trying to select the last 2 characters of a string to match them to another string. This is for a Poem generator that contains 20 or so words and I have to pick 2 words at random, them look at the last 2 characters to see if they match in each string. Say "Plain" and "Rain" would match because they both have "in" at the end. The length of each word could vary. I don't want this doing for me just what Method should I be looking at.
    Thanks.

    hi,
    try this:
    public class StringTest {
         public static void main(String args[]) {
              StringTest obj = new StringTest();
              obj.same();
         void same() {
              String rain = new String("Rain");
              String plain = new String("Plain");
              int rainLength = rain.length();
              int plainLength = plain.length();
              if(rain.substring(rainLength-2).equals(plain.substring(plainLength-2))) {
                   System.out.println("same");
              else {
                   System.out.println("different");
    }you can use the length method to get the length of a string and then use the substring method, passing it length-2, so get the last 2 chars.

  • Convert Char to float

    Hi all,
    Am wanting to convert a char value (the infoobject is defined as NUMC) into float in order to perform a calculation in the FOX formula. It would not allow the char value to be stored into a float variable...comes back wz an error message - Types of operands F and <infoobject_numc> do not agree.
    Any ways of doing this? I thought about using a function to perform the conversion from char to float format but dont knw if such a function exists on the BI system?
    Thanks!

    Hi,
    I sometimes use a local variable of type STRING to pass on values to other data types:
    DATA local type STRING.
    local = A.
    B = local.
    But I'm not sure it will work for you. If not, you can do it with an exit function.
    D

Maybe you are looking for