Having problem displaying Japanese Locale

Hi All,
Understand that when we install Solaris 8, we have the option of selecting japanses language without the multilanguage pack. Now, how can I do that without reinstalling my installed English Solaris 8 in sparc m/c?
I've installed the necessary packages but when I select the language from the login screen, it shows rubbish. Why is that so? Please help
Thanks

Looks like 1.4 renamed i18n.jar to charsets.jar, you're using the international version alright.
Is the input text file definitely in UTF8 format, or a native Japanese codepage/encoding scheme ?
Ms Word 2000 is actually good at detecting file types / encoding schemes. Try opening up your input file and see if it displays properly in Ms Word. I know... the irony of using a Microsoft product to debug Java!
If thats okay, then maybe check out Character.UnicodeBlock class
on the strings you've read in. You can see what Unicode character block each character is from... might at least show that you're reading them in right. Although there's no "Japanese" character block, not sure what you'll get...
After that, I'd assume it's a font/display issue.
regards,
Owen

Similar Messages

  • Problem Displaying Japanese chars in MIDlet

    Hi,
    I want to internationalize my MIDlet application.
    For that I am using ResourceBundle ,it works fine with J2ME kit.I know it works fine because Jdk1.3 supports displaying unicode characters.I think KVM doesn't support unicode characters.If anybody knows something then please reply immediately.
    Regards
    Vivek

    [vivek_kurundkar],
    Currently MIDP v1.0 only states that the ISO Latin 1 character encoding must be supported by all MIDP implementation i.e. mandatory to support the ISO Latin 1 char encoding but not all other locales.
    The locale is defined in the microedtion.locale system proprety and localization must be provided by the implementation i.e. for example the device manufacturer who provides the kVM for their device.
    In your case, you have a need for the Japanese locale and thus the emulator/kVM of the device must provide the Japanese locale.
    Which kVM emulator/device are you testing your CLDC/MIDP application with?
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Problem displaying Japanese char set in JEditorPane

    Hi ,
    I am using JEditorPane for displaying html content. If the content is in English
    it is getting displayed properly . In case of Japanese char set like Shift-JIS only square
    boxes is displayed .
    I have tried the following
    1.Installed Japanese font and set regional and language options.
    2.set content type of JEditorPane as text/html and char set=Shift-JIS
    3.Used InputSteamReader for reading html document .While constructing passed char set also.
    4.Used SetText to set html content.
    5.verified font.properties file
    I am Using JDK 1.4.2
    No positive results.
    Kindly help me to resolve this . If it known bug please inform.
    U can connect me at [email protected]
    Thanks in Advance,
    Polu

    Hi,
    Thanks,
    I have tried the approach has mentioned above but still no positive result,
    Pls can u guide me ,so as to what might be the problem,
    Cheers,

  • Problem displaying japanese character set in shopping cart smartform

    Hi All,
    whenever users are entering some text in Japanese character set while creating a shopping cart in SRM, the smartform print output is displaying some junk characters!! even though the system is unicode compatable, did any one have problem ??
    Thanks.

    Hi,
    May be there is some problem with UNICODE conversion.
    See the foll links;
    Note 548016 - Conversion to Unicode
    http://help.sap.com/saphelp_srm50/helpdata/en/9f/fdd13fa69a4921e10000000a1550b0/frameset.htm
    Europe Languages  work  in  Non- Unicode  System
    Re: Multiple Backends
    Re: Language issue
    Standard Code Pages in Non-Unicode System
    Re: Upgrade from EBP 4.0 to SRM 5.0
    http://help.sap.com/saphelp_srm50/helpdata/en/e9/c4cc9b03a422428603643ad3e8a5aa/content.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/11/395542785de64885c4e84023d93d93/content.htm
    BR,
    Disha.
    Do reward points for  useful answers.

  • Having problem displaying remote shared objects on flash

    hi
    I am using red5 flash server and at that side creating a shared object called chatSharedObject
    For the client side,I am using openlaszlo platform, but using actionscript 3  classes for the shared object implementation. cilent application is connecting to the shared object on the red5 side successfully(as I see on the red5 logs).
    here is the calling code snippet:
    [CODE]
    <button id="sendButton">send
          <handler name="onclick" method="sendClicked" />
          <method name="sendClicked" args="v=0">
            if (message.text != "") {
        //Debug.write("Message sent!");
        classroot.writeSharedObject(message.text); 
        message.clearText();
        message.setAttribute("text_y", 0);
        </method>
    </button>
    <method name="writeSharedObject" args="message">
    [B]//shared object send method is being called[/B]
        this.send("writeMessage",loginScreen.getUsername(),message);
    </method>
    <!--this method writes the messages to the debug window which will be shown to all users-->
    <method name="writeMessage" args="username, msg">
        //Debug.debug(msg);
        messageArea.addText(username+ " : "+msg+"\n");
    </method>[/CODE]
    When I generate the flash object and try to use this application, nothing is being displayed although there is no problem on this issue on the development enviroment. Problem causes when I try to run the swf10 flash object.
    Is this maybe a flash security issue? Although I have added the corresponding locations as the trusted location on the flash settings manager. Still problem goes on. And I think this is not about the flash player, it might be a special problem about the flash object.
    Couldn't find the solution for a week,
    Any help would be appreciated.
    Thanks in advance 
    Cem

    i can even gointo firefox and chrome and save the shared object. then open my i.e and see that object in the results page. but if i save the shared object in i.e it throws that error on the results page. So i'm pretty sure it must be the flushing of the object. Pasting my save code below:
    function makeResult(evt:MouseEvent):void{
          var flushstatus:String = new String();
          gSo.data.o = o;
          gSo.data.c = c;
          gSo.data.t = t;
          gSo.data.c = v;
          gSo.data.u=uid;
          flushstatus = gSo.flush();
          if (flushstatus != null) {
            switch (flushstatus) {
              case SharedObjectFlushStatus.PENDING: //this is incase the user doesnt have enough space
                gSo.addEventListener(NetStatusEvent.NET_STATUS, onFlushStatus);
                break;
              case SharedObjectFlushStatus.FLUSHED:
                redirect();
                break;
    function onFlushStatus(event:NetStatusEvent):void {
      switch (event.info.code) {
        case "SharedObject.Flush.Success":
          gSo.removeEventListener(NetStatusEvent.NET_STATUS, onFlushStatus);
          redirect();
          break;
        case "SharedObject.Flush.Failed":
          trace ("Shared object storage failed");
          break;
    function redirect() {
      try{
        var request:URLRequest = new URLRequest('../node/2');// i supply a base parameter to the swf so the redirect works
        navigateToURL(request,"_self");
      catch(error:Error){
        trace ("Redirect failed");

  • Fireworks having problem displaying fonts?

    I'm using Fireworks MX 2004 and have found that several fonts are displaying incorrectly in that only the botom half of each letter is displaying.
    I've looked at the font file and thats fine, tried it in other applications such as flash, word, powerpoint where it's absolutely fine, so am guessing its a fireworks problem. Tried reinstalling the font, but cant seem to work out whats causing the problem. They are all .ttf files.
    Any suggestions? been scratching my head over this one for days.
    Thanks

    Another workaround I've done in that situation is to add a small character (such as a period) above, below, or to the side of the character I want, separated by a considerable amount of whitespace. I'll try to get the periods off my canvas or to an area where I can cover them with a solid color rectangle. It's a silly solution, but I can usually get it to work.
    Or! If you don't have areas of solid color, you could still add the periods and white space, then apply a vector mask to the object so that only the desired character shows. (Wish I'd thought of this idea before today. Would have saved me a bunch of stupid rectangles! )

  • Having Problem Displaying Urdu in PDF!

    I've tried a lot to embed urdu font in pdf file. I'm using Perl's module "PDF::REUSE" for this purpose. No matter what font I try to embed, it gives me the message "Cannot extract the embedded font ----". Event "Arial" is not extracted. If anybody has proper idea about PDF document format please have a look below and let me know where the problem is. I've tried Acrobat reader 7,8,9 but all in vain. The first file im going to paste is without embedding font. It doesn't show urdu. The second fild just show dots. You can copy the text and save it with pdf extension to see the results youself.
    File1: without embedding font:
    %PDF-1.4
    %âãÏÓ
    4 0 obj<</Type/Font/Subtype/Type1/BaseFont/Helvetica/Encoding/WinAnsiEncoding>>endo bj
    5 0 obj<</ProcSet[/PDF/Text]/Font << /Ft1 4 0 R >>>>endobj
    6 0 obj<</Length 56>>stream
    0 0 0 rg
    0 g
    f
    BT /Ft1 12 Tf 25 790 Td (لاھوری) Tj ET
    endstream
    endobj
    3 0 obj<</Type/Page/Parent 2 0 R/Contents 6 0 R/MediaBox [0 0 595 842]/Resources 5 0 R>>endobj
    2 0 obj<</Type/Pages/Kids [3 0 R ]/Count 1 >>endobj
    1 0 obj<</Type/Catalog/Pages 2 0 R>>endobj
    xref
    0 7
    0000000000 65535 f
    0000000409 00000 n
    0000000357 00000 n
    0000000262 00000 n
    0000000015 00000 n
    0000000101 00000 n
    0000000160 00000 n
    trailer
    <<
    /Size 7
    /Root 1 0 R
    /ID [<de1200d050490945117cbea4bddc5fe3><de1200d050490945117cbea4bddc5fe3>]
    >>
    startxref
    452
    %%EOF
    File2: with embeded font:
    %PDF-1.4
    9 0 obj<</ProcSet[/PDF/Text]/Font << /Ft1 4 0 R >>>>endobj
    10 0 obj<</Length 74>>stream
    0 0 0 rg
    0 g
    f
    BT /Ft1 12 Tf 25 790 Td <00DF008F010400EF00AF0078> Tj ET
    endstream
    endobj
    3 0 obj<</Type/Page/Parent 2 0 R/Contents 10 0 R/MediaBox [0 0 595 842]/Resources 9 0 R>>endobj
    2 0 obj<</Type/Pages/Kids [3 0 R ]/Count 1 >>endobj
    4 0 obj
    <<
    /Type /Font
    /Subtype /Type0
    /DescendantFonts [ 7 0 R ]
    /Encoding /Identity-H
    /BaseFont /BXCJIM+UrduNaskhAsiatypeRegular
    /Name /Ft1
    >>
    endobj
    5 0 obj
    <<
    /Type /FontDescriptor
    /Ascent 1022
    /Flags 34
    /Descent -509
    /ItalicAngle 0
    /CapHeight 0
    /StemV 0
    /FontBBox [ -142 -677 1030 1147 ]
    /FontFile2 6 0 R
    /MissingWidth 1022
    /FontName /BXCJIM+UrduNaskhAsiatypeRegular
    >>
    endobj
    6 0 obj
    <<
    /Length 11 0 R
    /Filter [ /FlateDecode ]
    /Length1 3896
    >>
    stream
    x��W}PT� ?�������,��.߬��������%�ȇ�  G���  ̈`$H�bLT�8�&V�:�4���v���T;��jZS��ӴN�:1i ;-��    8 ��� �R�ȴ����]~��s�}��s~��}  
    <  t-=ݖ ���C�  �TkW[��� � � uƶ�_km J� @Ե�
    ����� ���y&#127;;*bj� Q^������wnϼ�(�  ~���%��s� ���h��#��E ) Т ,]O����G  �| �FD ��  �M�  ȳ�( d/�Qz��z�O�o�� '`  H ���r�9�m��x[���,  �>q �C>�  ��>� r�v2��a���4�������3���� ����� � �[7N�������G��${� ���!U��� �U��S�'��� �A=����HN�U�$U��l2�MqqR�J�h����� � 3��5fSnn��
    �� \.�KY2)�s��<�׻�'/��0Խ�Q�N��oݜZ��T��"�j�� �(Q� ]�(+r%�}��  R�)Q ���M��ȑ�^R�P �6��6�r| �dm��8Ǫ�� 6�f$Iњ�e���֝H-�K�u�� � u��舘|� !ŘS^p{ӗdy E3�1��� �.Z@ 5�Db0 ��UG  K�5 �� t*��J$��=^� ׍c�&3� ��� �̙�$�\ ����  ��le �ݜ/2FT��/�Qњ�O.��Y��+M �� �t���w��� ~%|�VR ��$�'&S�  �XIK�( i�?
    ���H`���Iv�a�T6�� @  �<�B��V�w xV���f�|�y�� �z���x�+J�<��l� ���5ߔk.<�������A q:�.���%E'&Iv�ͮ#�x�%1U$�&#127;*��
    �|Ԁs��N�GѨ����  j��r���.��(1���J�o���� �W��)UsV�&#127;1�֤��d�J��  �  �ϩ�. x:ys�o�gf�#&#127;� ����ٟd�{1��71�@!=|�^��0 2�>�L23�Y0�iФ[cՉ LBj$ R ��GDJL�  5dN�%S��8 �+`2�����rM '  �    ��\� s �RsϹ �}kƬ��gg�}�h���f9K3� �LyER�u�83I��� mD�C�y��quuz�S�� ({�qG ղ S��q1X ff� @28! ��6�� �� li&�62�B �� �YiB��� 5��
    Ѝ  +�MD9��"�3=J�DUaD �����ī@�O P�9LqF    )t�0R�N?����ϑ�x�޾��h�P �� X ]�� ���&#127;~����%Y����&#127;�RCTQ��A �o\X[mIuX �/���N�eQ��R����� �/ Q���:� �1�àV����-    # }�-|�� �% ��k��ʅϩ�c�x� �5���D�4�"  ��X }� �A  ��, " �� Բ�@ �C!� O 2h6�X9���.�m|���md  �~��ù*y^�S�@| �P�4��D_�T��\�    �H7l�> ���AX'l�$q    \ n�#B?et l*�j: �X)���!E� ���8&#127;EX 18�T �u��  �m�    ; 58��w�Dy'�
    Ћ��f� V�� B;�J<:0 �� �}��A����R��}  &#127;Ě A��&� � юx q Q�hF|F�   �sZ��k�s��� � }�!��/P �xM<    !i7� �?# �]� B�
    � 2�({���    ~���q� VJ  ���0���3�E� ת�CA����8�o&B��� *� �Dr r� X&�Lg�w���e{� sU��1̿O&#127;
    �  �Gq�3�� ��s�A �� >W|� !� >J����  B ���Q߉14��� )��QnE�� )1 #l|T >��Ո\�ɤ\�8��| �� �� xO鷠 ��%� �!�� �7��
    \&#127;���� Y�@�- /�cR ��6@�� 楍�+rǤ܉{��G�{X� ��,�r'  u(������ ��b] �y � ȭ
    � =r"�Q� B*/��<ާ q}.�� Zh%�C����գ    �� >Ǝ�|<�� �s ���s #f��H�)���:r ��]̷ � y`I�  �y|���|x�c�&#127; ��%����� $�>�O���L�k����G��$(�k@�d �2 �{  � �� �� h&#127;7b�_ ��Æ�^܂�< �b/�(�v�mr/U���i��t�Dѿ�*r V�#XC��K<I3� xZx
    s} k� ا ��j � ����-٦x � ֈ؊�� } ub%4�۠M� �T�c}�:5��^ �V �� )��۱/oT�/�=_] �7�x�e�  pL��(  �?J (��Y����������h�j�wA%��,_?K�����/�;CI d�  �O ��ӌ� � � &#127;%
    endstream
    endobj
    7 0 obj
    <<
    /Type /Font
    /Subtype /CIDFontType2
    /W 8 0 R
    /BaseFont /BXCJIM+UrduNaskhAsiatypeRegular
    /CIDSystemInfo <<
    /Supplement 0
    /Ordering (Identity)
    /Registry (Adobe)
    >>
    /FontDescriptor 5 0 R
    /DW 1022
    >>
    endobj
    8 0 obj
    [ 120 [ 700 ] 143 [ 254 ] 175 [ 332 ] 223 [ 455 ] 239 [ 375 ] 260 [ 437 ] ]
    endobj
    11 0 obj
    2233
    endobj
    1 0 obj<</Type/Catalog/Pages 2 0 R>>endobj
    xref
    0 12
    0000000000 65535 f
    0000003289 00000 n
    0000000291 00000 n
    0000000195 00000 n
    0000000343 00000 n
    0000000495 00000 n
    0000000725 00000 n
    0000002964 00000 n
    0000003177 00000 n
    0000000015 00000 n
    0000000074 00000 n
    0000003268 00000 n
    trailer
    <<
    /Size 12
    /Root 1 0 R
    /ID [<42ae481de28a1814725055258f676da2><42ae481de28a1814725055258f676da2>]
    >>
    startxref
    3332
    %%EOF
    -------------------------------------------------------------- Please help me thanks!!!

    The basic problem is that you are not embedding the font and it is not available in the PDF. In addition, Acrobat has no substitution to use for the font. You need to embed the font when creating the PDF. Check that you are using something stonger than the smallest file size "Settings" file, and even more than the Standard settings. I typically recommend Press or Print. However, you may have a font that is not licensed for embedding, and then you are stuck.
    You might want to check Distiller and be sure that the font is accessible to Acrobat during the creation process. If it is a font in your font folder, you should be OK as long as it is licensed for embedding.

  • Browsers having problem displaying text

    All text is displaying as the letter A in boxes. I'm typing this blind because it's happening. PLEASE HELP!!!!

    Use a grid of square labels. Set the text for the starting labels. Alternatively, but I haven't tried this, you could use square text areas and make the starting ones uneditable.

  • In Japanese locale setVisible(true) consumes large memory

    In JAPANESE locale - Swap space/memory usage grows enormously when setVisible(true) method is called.
    Problem :
    We are developing / converting a product in JAVA built with AWT components in JAPANESE locale. While testing our product, we observed that memory usage (Total VSS column in EnglishResult.txt & JapaneseResult.txt) and Swap space used growing continuously using ?GLANCE? tool, and it was found that setVisible(true) (For any component like Frame, Dialog etc.,) method consumes large amount of memory.
    To ensure this problem, the following ?Operation Memory? test was carried out with a sample application in the below mentioned combination of configuration and platforms.
    Java Language : JRE 1.3.1 (Hotspot Client) , JRE 1.2.2 , JRE 1.1.8
    Locale : Japanese (ja , ja_JP.PCK , ja_JP.UTF-8 , ja_JP.EUCJP , Japanese)
    OS          : Solaris 8 ? 256 MB RAM , Swap Space 1 GB
    Operation Memory:
    1.     Execute the application
    2.     Press the ?Show? button
    3.     After a dialog is appeared , press the ?Hide? button
    4.     Repeat the steps 2 & 3 for 3 times.
    5.     Repeat step 4 for 3 times.
    The data is collected at the following points using GLANCE tool and the result is shown in EnglishResult.txt (Data of English Locale), JapaneseResult.txt (Data of Japanese locale).
    1.     After Step 1
    2.     After Step 4 ( 3 times)
    In the attached result it is found that for every 3 times of opening and closing the dialog , there is an increase of 1 MB of swap space used & Total VSS , where as in the original product that we have developed , for every opening and closing of dialog there is an increase of 7MB ,
    We observed the ?memory growing? behavior in all JRE versions and all Japanese locales .How ever we attaching data collected only in JRE 1.3.1, ja_JP.EUCJP, Solaris 8.
    using GLANCE tool.
    1)ResultJapanese.Txt ? Data collected in Japanese locale
    2)ResultEnglish.Txt - Data collected in English Locale
    This behavior is NOT observed if the locale is set to English.
    Kindly suggest us to overcome the above said problem in JAPANESE locale.
    Sample Java Code (Mem.java)
    import java.awt.*;
    import java.awt.event.*;
    public class mem
         public static void main(String arg[])
              showframe sf = new showframe();
              sf.setSize(300,300);
              sf.show();
    class showframe extends Frame implements ActionListener
         Button b1,b2;
         tpframe tpf ;
         showframe()
              tpf = new tpframe();
              b1 = new Button("show");
              b2 = new Button("hide");
              setLayout(new FlowLayout());
              add(b1);     add(b2);
              b1.addActionListener(this);
              b2.addActionListener(this);
         public void actionPerformed(ActionEvent ae)
              if(ae.getSource()==b1)
                   tpf = new tpframe();
                   tpf.setVisible(true);
              if(ae.getSource()==b2)
                   tpf.setVisible(false);
    class tpframe extends Frame
         TextField tx1,tx2,tx3,tx4 ;
         tpframe()
              Panel p1 = new Panel();
              Label lb1 = new Label("first tab panel");
              tx1 = new TextField("ONEONE");
              tx2 = new TextField("ONEONE");
              tx3 = new TextField("ONEONE");
              tx4 = new TextField("ONEONE");
              p1.setLayout(new FlowLayout());
              p1.add(lb1);
    p1.add(tx1);p1.add(tx2);
    p1.add(tx3);p1.add(tx4);
              add(p1,BorderLayout.CENTER);
              setSize(300,300);
    JapaneseResult.txt (Data collected using GLANCE tool in Japanese locale)
    ========================================================================
    B3694A GlancePlus C.03.10.00 04:17:58 nucleus sun4m Current Avg High
    CPU Util S SUU | 16% 22% 60%
    Disk Util | 0% 1% 3%
    Mem Util SSU U | 42% 42% 42%
    Swap Util U URR | 12% 11% 12%
    Memory Regions PID: 6521, java PPID: 6485 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.8mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.5mb 0xe8000000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 144mb Other VSS: 27mb Total VSS: 37mb
    B3694A GlancePlus C.03.10.00 04:17:58 nucleus sun4m Current Avg High
    CPU Util S SUU | 16% 22% 60%
    Disk Util | 0% 1% 3%
    Mem Util SSU U | 42% 42% 42%
    Swap Util U URR | 12% 11% 12%
    SWAP SPACE Users= 6
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 64mb
    Swap Avail: 738mb Swap Used: 64mb Resvd Util (%): 12 Swap Reserved: 85mb
    *********** after the dialog is shown for the first time ***********
    B3694A GlancePlus C.03.10.00 04:19:22 nucleus sun4m Current Avg High
    CPU Util SSUU | 6% 20% 85%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 43% 42% 43%
    Swap Util U URR | 12% 11% 12%
    Memory Regions PID: 6521, java PPID: 6485 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 4.0mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.5mb 0xe8000000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 145mb Other VSS: 27mb Total VSS: 38mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 66mb
    Swap Avail: 738mb Swap Used: 66mb Resvd Util (%): 12 Swap Reserved: 88mb
    *********** after opening and closing the dialog 3 times ********
    B3694A GlancePlus C.03.10.00 04:20:25 nucleus sun4m Current Avg High
    CPU Util S SU U | 18% 20% 85%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 43% 42% 43%
    Swap Util U URR | 12% 11% 12%
    Memory Regions PID: 6521, java PPID: 6485 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 4.9mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.5mb 0xe8000000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 146mb Other VSS: 27mb Total VSS: 39mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 67mb
    Swap Avail: 738mb Swap Used: 67mb Resvd Util (%): 12 Swap Reserved: 89mb
    **************** opening and closing for next 3 times ( total 6 times ) **********
    B3694A GlancePlus C.03.10.00 04:21:26 nucleus sun4m Current Avg High
    CPU Util S SUU | 9% 20% 85%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 43% 43% 43%
    Swap Util U URR | 12% 11% 12%
    Memory Regions PID: 6521, java PPID: 6485 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 5.8mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.5mb 0xe8000000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 147mb Other VSS: 27mb Total VSS: 40mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 67mb
    Swap Avail: 738mb Swap Used: 67mb Resvd Util (%): 12 Swap Reserved: 89mb
    *********** after opening and closing the dialog 3 more times ( total 9 times )********
    EnglishResult.Txt (Data collected using GLANCE Tool in English locale)
    B3694A GlancePlus C.03.10.00 04:01:33 nucleus sun4m Current Avg High
    CPU Util S SUU | 17% 36% 100%
    Disk Util DD | 3% 1% 3%
    Mem Util SSU U | 35% 34% 35%
    Swap Util U URR | 9% 8% 9%
    Memory Regions PID: 6310, java PPID: 6264 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.3mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.0mb 0xe8000000 <shmem>
    SHMEM /S 1 30.0mb 0xe8200000 <shmem>
    SHMEM /S 1 516kb 0xeab40000 <shmem>
    SHMEM /S 1 516kb 0xeac00000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 143mb Other VSS: 26mb Total VSS: 35mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 46mb
    Swap Avail: 738mb Swap Used: 46mb Resvd Util (%): 9 Swap Reserved: 67mb
    ************* after the dialog was opened for the first time **********
    B3694A GlancePlus C.03.10.00 04:03:39 nucleus sun4m Current Avg High
    CPU Util SSUU | 7% 19% 100%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 35% 35% 35%
    Swap Util U URR | 9% 8% 9%
    Memory Regions PID: 6310, java PPID: 6264 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.3mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.2mb 0xe8000000 <shmem>
    SHMEM /S 1 29.7mb 0xe8240000 <shmem>
    SHMEM /S 1 516kb 0xeab40000 <shmem>
    SHMEM /S 1 516kb 0xeac00000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 143mb Other VSS: 26mb Total VSS: 36mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 46mb
    Swap Avail: 738mb Swap Used: 46mb Resvd Util (%): 9 Swap Reserved: 67mb
    ************ after open and close of dialog for 3 times **********
    B3694A GlancePlus C.03.10.00 04:05:38 nucleus sun4m Current Avg High
    CPU Util S SU U | 38% 15% 100%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 35% 35% 35%
    Swap Util U URR | 9% 8% 9%
    Memory Regions PID: 6310, java PPID: 6264 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.3mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.2mb 0xe8000000 <shmem>
    SHMEM /S 1 29.7mb 0xe8240000 <shmem>
    SHMEM /S 1 516kb 0xeab40000 <shmem>
    SHMEM /S 1 516kb 0xeac00000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 143mb Other VSS: 26mb Total VSS: 36mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 46mb
    Swap Avail: 738mb Swap Used: 46mb Resvd Util (%): 9 Swap Reserved: 67mb
    *********** after opening and closing the dialog for next 3 times ( total-6 times) **********
    B3694A GlancePlus C.03.10.00 04:07:46 nucleus sun4m Current Avg High
    CPU Util SSU | 5% 13% 100%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 35% 35% 35%
    Swap Util U URR | 9% 8% 9%
    Memory Regions PID: 6310, java PPID: 6264 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.3mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.2mb 0xe8000000 <shmem>
    SHMEM /S 1 29.7mb 0xe8240000 <shmem>
    SHMEM /S 1 516kb 0xeab40000 <shmem>
    SHMEM /S 1 516kb 0xeac00000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 143mb Other VSS: 26mb Total VSS: 36mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 46mb
    Swap Avail: 738mb Swap Used: 46mb Resvd Util (%): 9 Swap Reserved: 67mb
    *********** after open and close of dialog for the next 3 times ( total-9 times ) *********

    I have the same problem!
    Our program chews up memory like there is no tomorrow when opening and closing frames....
    I will try to start a new thread in this forum explaining our problems a bit more in depth. I have a strange feeling that the garbage collector doesn't do it's job as supposed to.

  • Problem displaying php page in dreamweaver

    I am having problems displaying php scripting on dreamweaver.
    Need your advice.
    Installed dreamweaver 8, Coldfusion 7, mysql, php5.2 (using
    windows installer).
    Created file test.php ror testing containing
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    </head>
    <body>
    date is:<b><?php echo Hello ?></b>
    </body>
    </html>

    ulises_arsi wrote:
    > I am having problems displaying php scripting on
    dreamweaver.
    Tell us what the problems are.
    > Installed dreamweaver 8, Coldfusion 7, mysql, php5.2
    (using windows installer).
    PHP needs to be configured with a web server, such as Apache
    or IIS.
    ColdFusion is also a webserver, but as far as I know, it
    cannot be
    configured to serve PHP pages.
    > date is:
    <?php echo Hello ?>
    The only thing that would display is an error message. Hello
    needs to be
    enclosed in quotes:
    <?php echo 'Hello'; ?>
    David Powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • Problems displaying a utf-8 page on firefox on windows server 2003 however the same version of firefox is working fine on windows xp, is there any specific thing to check on windows server 2003?

    firefox is having problem displaying utf-8 page on windows server 2003 however the same version of ff is working fine on windows xp, is there any configuration to check on windows 2003?

    Can you post a link and attach screenshots to show the difference?

  • I am having problems to run an app, there is an error display that says I need to set bonjour and that this app serial number has been used by another red user,  could anybody guide me?

    I am having problems to run an app, there is an error display that says I need to set  bonjour services

    Logic is the APPlication (program, app) that you are having the problem with.
    Logic Pro can take advantage of other computers on your local (home or work) network to help it do "heavy lifting" data chores by using Bonjour and a feature called Nodes.   It seems that Logic is attempting to find and connect to another machine on your network.
    Do you have Logic installed on another computer there?  That may be the source of the confilict.
    You might want to post this question in the Logic Pro Community.
    Be sure to indicate the version of Logic Pro that you are using.  I'm sure the folks there can help you out.

  • I am having problems to run logic pro 9, there is an error display that says I need to set bonjour and that this app serial number has been used by another red user,  could anybody guide me?

    I am having problems to run logic pro 9, there is an error display that says I need to set bonjour and that this app serial number has been used by another red user,  could anybody guide me? actually, my computer can't start  since three days ago, could it be the same problem?

    Logic is the APPlication (program, app) that you are having the problem with.
    Logic Pro can take advantage of other computers on your local (home or work) network to help it do "heavy lifting" data chores by using Bonjour and a feature called Nodes.   It seems that Logic is attempting to find and connect to another machine on your network.
    Do you have Logic installed on another computer there?  That may be the source of the confilict.
    You might want to post this question in the Logic Pro Community.
    Be sure to indicate the version of Logic Pro that you are using.  I'm sure the folks there can help you out.

  • Having problems connecting a late 2011 Macbook Pro 2.2ghz i7 to a Sony KDL-32L5000 using a display miniport to DVI adapter (DVI to VGA cord). The TV is not detecting the macbook. Anyone have this problem?

    Having problems connecting a late 2011 Macbook Pro 2.2ghz i7 to a Sony KDL-32L5000 using a display miniport to DVI adapter (DVI to VGA cord). The TV is not detecting the macbook. Anyone have this problem?

    You really have to mess with the resoluton, espescially the refresh rate, as it varies from projector to projector, monitor to monitor. Even within the same brand! Because so many manufacturers are trying so many different things to become the next cool kid on the block, and the way the formats are being configured that's now part of the game.
    That's why so many professionally produced corporate shows hire a dedicated projectionist for the video presentations. Too many bugs in the honey.
    Refresh & sesolution are the first things to look at.
    Just so you know that colors in PowerPoint PC, and PowerPoint Mac, don't exactly match... go figure.
    I forgot to mention another thing, sometimes it's the projector that needs to be tweaked.

  • Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. scree

    Not sure that I have selected the correct forum.  Hope my questions are clearly stated.
    Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. screen resolution choices).   It does not show Mail or Safari menus.  System preferences'  display "gathered" the Samsung and chose its resolution.  I did not find a way to select the Samsung as my display.
    In addition to having old hardware, we have Verizon FIOS providing internet and TV access.  Is there any way to make this work for us?  We would like to stream video (Netflix) and view shows from the Web.  Do we need Apple TV to do this?  Or is it not possible with our old iMac?  My husband thinks that our Airport could be a factor. 
    Thank you

    Lately, I have been seeing a lot of posts with users trying to use their Macs/iMacs to mirror their streaming video from their Macs to an HDTV.
    There are, actually, many alternatives to choose from than just from a Mac.
    You need to have or invest in a WiFi capable router for all of these examples.
    Apple TV only integrates with WiFi and newer Mac hardware. So, if you want to have total integrated experience, if you have a 2011 Mac or newer, you might as well pay the $100 for the AppleTV box.
    If you have a older Mac, like I have noticed many users do, then you have other options.
    If you want to elimate long cable clutter and having your Mac at the mercy of your TV all of the time,  you can still use the AppleTV box independently or purchase cheaper alternative media streaming boxes from Roku, Sony, Boxee or any number of electronics manufacturers that now have media streaming boxes and media streaming capability built into DVD/Blu-ray players.
    These eliminate long cable clutter by being close to the HDTV where shorter, less expensive cables can be used.
    Another alternative for iPad users is to use an iPad with the USB/HDMI video adapter and use your iPad as the streaming box. This ties up your iPad in much the same way as it does with your Mac, but again the iPad can be close to the TV and use minimal cables to the TV.
    Another alternative to is to use a combination of an iPad and your Mac to stream content that is only available to stream online from a computer. In this case, you can use a desktop remote app on your iPad and Mac. A good and cheap Desktop Remote app is Splashtop Remote. This allows you to completely connect your iPad remotely, over Wifi, to your iMac desktop. The app streams both video and sound to the iPad which is still connected to your HDTV. The resultant stream video picture will be smaller than the size of your HDTV, but it will still be plenty large enough to watch. Again, if you own a iPad and an Intel Mac, this method also allows minimal cabling to the TV.

Maybe you are looking for

  • Problem to install Windows 7 with Bootcamp

    Hi everyone, I know there's already quite a few discussion on it but... I'm desperate... After few days trying to install Windows 7 I'm asking for some help. I checked soooooooo many forum, tried sooooooo many stuffs, install and desinstall soooooooo

  • Updating Supplier Payment Method from Backend in R12

    Hi Friends, I have requirement of Updating Payment Method of Suppliers at Supplier Level as well as Supplier Site Level from Backend.Please provide me the solution how to update it at supplier level as well as site level.Can we update only at supplie

  • Log data

    When a user that doesn't exist for OLAP Server is trying to login, the log writes that the user tried to login and failed because it didn't exist.But when an existing user tries to login and writes incorrectly the password, OLAP Server log only says

  • Rescheduling using transaction V_V2

    I have created a Stock transport order and now I want to reschedule it using transaction V_V2, but I am facing problem in this. Can anyone please help me out. Thanks & Regards, Nilesh Kumar

  • Imovie hang up on start

    I recently uprgraded to maverick (big mistake) and now two externatl hard drives aren't recognized.  Today I tried to open imovie and the computer hung up. This is the second hangup I've had since installing Maverick.  I never had any hangup in the t