Use unicode in JOptionInputDialog with indexOf?

I cannot use indexOf for unicode. Is there any alternative / solution?
public static void main(String[] args) {
            // The following is perfect.
       String nonAsciiString="中國茶在中國生產。China.";
       int nonAsciiInt=nonAsciiString.indexOf("生");
       System.out.println(nonAsciiInt);
       String nonAsciiDislogX= "";
       nonAsciiDislogX= JOptionPane.showInputDialog(null,"Dialog X: Enter  生: ","",-1);
nonAsciiInt=nonAsciiString.indexOf(nonAsciiDislogX);
       System.out.println(nonAsciiInt);
       // It gives the correct expected answer: 6
                          // The above is perfect.
       // The following is problematic.
          JTextPane     nonAsciiJTextPane = new JTextPane(); // create third textarea
   nonAsciiJTextPane.setContentType("text/html");
   nonAsciiJTextPane.setText("<b>&#20013;&#22283;&#33590;&#21619;&#36947;&#22909;&#65292;&#22312;&#20013;&#22283;&#29983;&#29986;&#12290;China.</b>");
    String nonAsciiJTextPaneText= nonAsciiJTextPane.getText();
   String  nonAsciiDialogA= JOptionPane.showInputDialog(null,"Dialog A: Enter &#29983;: ","",-1);
   nonAsciiInt=nonAsciiJTextPaneText.indexOf(nonAsciiDialogA);
       System.out.println(nonAsciiInt);
       // Here is the unicode problem:
       // "-1" is shown and it means that  "&#29983;" is not found.
       // Why is  "&#29983;" not found?
        // When you enter "China", "151" is displayed.
       // China should be the 13th character.
       // Why is "151" displayed.
        }

import javax.swing.*;
public class TestChin{
public static void main(String[] args) {
            // The following is perfect.
       String nonAsciiString="&#20013;&#22283;&#33590;&#22312;&#20013;&#22283;&#29983;&#29986;&#12290;China.";
       int nonAsciiInt=nonAsciiString.indexOf("&#29983;");
       System.out.println(nonAsciiInt);
       String nonAsciiDislogX= "";
       nonAsciiDislogX= JOptionPane.showInputDialog(null,"Dialog X: Enter  &#29983;: ","",-1);
nonAsciiInt=nonAsciiString.indexOf(nonAsciiDislogX);
       System.out.println(nonAsciiInt);
       // It gives the correct expected answer: 6
                          // The above is perfect.
       // The following is problematic.
          JTextPane     nonAsciiJTextPane = new JTextPane(); // create third textarea
   //nonAsciiJTextPane.setContentType("text/html");
   nonAsciiJTextPane.setText("&#20013;&#22283;&#33590;&#21619;&#36947;&#22909;&#65292;&#22312;&#20013;&#22283;&#29983;&#29986;&#12290;China.");
    //nonAsciiJTextPane.setContentType("text/html");
    String nonAsciiJTextPaneText=null;
try{
    nonAsciiJTextPaneText= new String(nonAsciiJTextPane.getText().getBytes(),"Big5");
    System.out.println("yyy"+nonAsciiJTextPaneText);
catch (Exception e){System.out.println("exception");}
   String  nonAsciiDialogA= JOptionPane.showInputDialog(null,"Dialog A: Enter &#29983;: ","",-1);
   nonAsciiInt=nonAsciiJTextPaneText.indexOf(nonAsciiDialogA);
       System.out.println(nonAsciiInt);
}

Similar Messages

  • How to fill an oracle CLOB with a XML document using Unicode UTF8

    Hi,
    I'm working with C# and oracle database v8.1.7 (release 3), and i'm having some problems to fill correctly an oracle CLOB parameter with XML document using UTF8 encoding.
    It works fine with "Encoding.Unicode" but not with "Encoding.UTF8". The problem is that i can't use Unicode (UTF16) with oracle 8.
    Can someone help me ? Thanks.
    Here is my code.
    OracleTransaction tx = conn.BeginTransaction();
    OracleCommand cmd = conn.CreateCommand();
    cmd.Transaction = tx;
    cmd.CommandText = "declare xx clob; begin dbms_lob.createtemporary(xx, false, 0); :tempclob := xx; end;";
    cmd.Parameters.Add(new OracleParameter("tempclob", OracleType.Clob)).Direction = ParameterDirection.Output;
    cmd.ExecuteNonQuery();
    OracleLob tempLob = (OracleLob)cmd.Parameters[0].Value;
    MemoryStream MemStrm = new MemoryStream();
    XmlTextWriter writer = new XmlTextWriter(MemStrm, Encoding.UTF8);
    writer.Formatting = Formatting.Indented;
    WriteXMLExample(writer, "MSFT", 74.125, 5.89, 69020000);
    writer.Close();
    cmd.Parameters.Clear();
    cmd.CommandText = "test_xml";                    
    cmd.CommandType = CommandType.StoredProcedure;
    tempLob.Write(MemStrm.GetBuffer(), 0, MemStrm.GetBuffer().Length );
    tempLob.Position = 0;
    cmd.Parameters.Add(new OracleParameter("xml_inout", OracleType.Clob)).Value = (OracleLob) tempLob;
    cmd.ExecuteNonQuery();
    Console.WriteLine( "Param 0 = " + cmd.Parameters[0].Value.ToString() );
    tx.Commit();

    Hi,
    I'm working with C# and oracle database v8.1.7 (release 3), and i'm having some problems to fill correctly an oracle CLOB parameter with XML document using UTF8 encoding.
    It works fine with "Encoding.Unicode" but not with "Encoding.UTF8". The problem is that i can't use Unicode (UTF16) with oracle 8.
    Can someone help me ? Thanks.
    Here is my code.
    OracleTransaction tx = conn.BeginTransaction();
    OracleCommand cmd = conn.CreateCommand();
    cmd.Transaction = tx;
    cmd.CommandText = "declare xx clob; begin dbms_lob.createtemporary(xx, false, 0); :tempclob := xx; end;";
    cmd.Parameters.Add(new OracleParameter("tempclob", OracleType.Clob)).Direction = ParameterDirection.Output;
    cmd.ExecuteNonQuery();
    OracleLob tempLob = (OracleLob)cmd.Parameters[0].Value;
    MemoryStream MemStrm = new MemoryStream();
    XmlTextWriter writer = new XmlTextWriter(MemStrm, Encoding.UTF8);
    writer.Formatting = Formatting.Indented;
    WriteXMLExample(writer, "MSFT", 74.125, 5.89, 69020000);
    writer.Close();
    cmd.Parameters.Clear();
    cmd.CommandText = "test_xml";                    
    cmd.CommandType = CommandType.StoredProcedure;
    tempLob.Write(MemStrm.GetBuffer(), 0, MemStrm.GetBuffer().Length );
    tempLob.Position = 0;
    cmd.Parameters.Add(new OracleParameter("xml_inout", OracleType.Clob)).Value = (OracleLob) tempLob;
    cmd.ExecuteNonQuery();
    Console.WriteLine( "Param 0 = " + cmd.Parameters[0].Value.ToString() );
    tx.Commit();

  • Not able to display data in separate columns using Unicode encoding

    Hi,
    Iam using Unicode encoding in my Java appln to support Japanese characters while downloading CSV report. But using the Unicode encoding displays all data in the first column of Excel sheet.
    Please let me know how to display data in different columns using Unicode encoding in Excel sheet.
    This is an urgent need. Please help me out.

    Hi,
    I have no problem with item :P15_EV_LCL this is having a value my probem here is i am using java script to display the value in different color based on the condtion case
    eg:
    select
    case
    TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2)
    = :P15_EV_LCL
    then
    span style="background-color:lightgreen"
    || TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || /span
    else
    span style="background-color:yellow"
    || TRUNC(
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || /span
    end "Effort"
    from actuals Z
    If i dont use this <Span style="Background-color:color"> i am able to generate data in excel sheet if i use this color coding i am not able to get data in spread sheet.
    Please suggest
    Thanks
    Sudhir
    Edited by: Sudhir_N on Mar 23, 2009 10:00 PM

  • How to load unicode data files with fixed records lengths?

    Hi!
    To load unicode data files with fixed records lengths (in terms of charachters and not of bytes!) using SQL*Loader manually, I found two ways:
    Alternative 1: one record per row
    SQL*Loader control file example (without POSITION, since POSITION always refers to bytes!)<br>
    LOAD DATA
    CHARACTERSET UTF8
    LENGTH SEMANTICS CHAR
    INFILE unicode.dat
    INTO TABLE STG_UNICODE
    TRUNCATE
    A CHAR(2) ,
    B CHAR(6) ,
    C CHAR(2) ,
    D CHAR(1) ,
    E CHAR(4)
    ) Datafile:
    001111112234444
    01NormalDExZWEI
    02ÄÜÖßêÊûÛxöööö
    03ÄÜÖßêÊûÛxöööö
    04üüüüüüÖÄxµôÔµ Alternative2: variable length records
    LOAD DATA
    CHARACTERSET UTF8
    LENGTH SEMANTICS CHAR
    INFILE unicode_var.dat "VAR 4"
    INTO TABLE STG_UNICODE
    TRUNCATE
    A CHAR(2) ,
    B CHAR(6) ,
    C CHAR(2) ,
    D CHAR(1) ,
    E CHAR(4)
    ) Datafile:
    001501NormalDExZWEI002702ÄÜÖßêÊûÛxöööö002604üuüüüüÖÄxµôÔµ Problems
    Implementing these two alternatives in OWB, I encounter the following problems:
    * How to specify LENGTH SEMANTICS CHAR?
    * How to suppress the POSITION definition?
    * How to define a flat file with variable length and how to specify the number of bytes containing the length definition?
    Or is there another way that can be implemented using OWB?
    Any help is appreciated!
    Thanks,
    Carsten.

    Hi Carsten
    If you need to support the LENGTH SEMANTICS CHAR clause in an external table then one option is to use the unbound external table and capture the access parameters manually. To create an unbound external table you can skip the selection of a base file in the external table wizard. Then when the external table is edited you will get an Access Parameters tab where you can define the parameters. In 11gR2 the File to Oracle external table can also add this clause via an option.
    Cheers
    David

  • How to use unicode fonts in Oracle forms 10g?

    Hi I am working in forms 10g for quite a long time, the software that I have developed so far are all in English language. Now I have requirements to use Bengali Fonts in Forms 10g. I am facing difficulties doing that. Please reply with help. Thanks
    Hasan Al Mamun

    Check this forum post (though that is for 6i, it would be of helpful for you)
    How to use unicode fonts in Oracle forms 10g?
    -Arun

  • Unicode font usage with jTabbedPane

    Hey there
    I faced a problem when I use Unicode characters on JTabbedPane
    the font is amharic power geez unicode1 and it works fine with jLabel and partially with jButtons ( except trying to set text at run time )
    The problem with jTabbedpane is that when I change its tab title property the other tabs disappear ( am using netbeans 5.5 )

    To me, it looks as if your problem is that you're only calling setFont on "this".
    That's only going to set it for the top level frame, and doesn't always do it for every individual component. The easy way to get around this is to go berserk with the setFont call. Set it on anything (heck, set it on your dog if it makes you feel any better)! ;D
    The slightly harder but smarter way to do this is to write a recursive function that drills down your component list.
    public void setFontRecursively(Font myFont, Component comp) {
       comp.setFont(myFont);
       if (comp instanceof Container) {
          Component[] childComps = ((Container)comp).getComponents();
          if (childComps != null) {
             for (int i=0; i < childComps.length; i++) {
                setFontRecursively(myFont, childComps);
    That should basically cover anything bar popup menus and drop-down submenus. You have to recall this as they appear, or they don't get the font straight off.
    Hope that helps!
    Martin Hughes

  • Double byte characters turn into squares at PDF export use Unicode font

    Hi all,
    We developing with Visual Studio 2008, .NET 2.0 and Crystal Report XI Release 2 SP5 an international windows application. We use the font Arial Unicode MS in the rpt file. We translate the fix texts with the Crystal Translator (3.2.2.299).
    On the distributed installation of our software, the printout and preview displays the double byte characters properly (Japanese, Korean, Chinese), but when we export the report as PDF, the characters get displayed with squares. This happens also, when the font Arial Unicode MS is installed on the distributed installation on Windows XP Professional.
    I searched for hours for a solution in the knowlegde base articles and in forum of Crystal Report. I found one thread, which describes exactly our problem:
    [Crystal XI R2 exporting issues with double-byte character sets|Crystal XI R2 exporting issues with double-byte character sets;
    But we already introduced the solution to use Unicode font and I also linked the font Lucida Sans Unicode to the Arial Unicode MS, but we still face the problem.
    Due to our release on thursday we are very under pressure to solve this problem asap.
    We appreciate your help very much!
    Ronny

    Your searches should have also come up with the fact that CR XI R2 is not supported in .NET 2008. Only CR 2008 (12.x) and Crystal Reports Basic for Visual Studio 2008 (10.5) are supported in .NET 2008. I realize this is not good news given the release time line, but support or non support of cr xi r2 in .net 2008 is well documented - from [Supported Platforms|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7081b21c-911e-2b10-678e-fe062159b453
    ] to [KBases|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do], to [Wiki|https://wiki.sdn.sap.com/wiki/display/BOBJ/WhichCrystalReportsassemblyversionsaresupportedinwhichversionsofVisualStudio+.NET].
    Best I can suggest is to try SP6:
    https://smpdl.sap-ag.de/~sapidp/012002523100015859952009E/crxir2win_sp6.exe
    MSM:
    https://smpdl.sap-ag.de/~sapidp/012002523100000634042010E/crxir2sp6_net_mm.zip
    MSI:
    https://smpdl.sap-ag.de/~sapidp/012002523100000633302010E/crxir2sp6_net_si.zip
    Failing that, you will have to move to a supported environment...
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Edited by: Ludek Uher on Jul 20, 2010 7:54 AM

  • Using UNICODE fonts in Adobe Ps CS5

    Hi friends and professionals:
    I've got problem with Ps CS5 when I use UNICODE fonts (this is not the case for former Ps CS versions). Someone who know how to fix this problem, please help! Thanks.
    TLe
    PS: Ps CS5 lastest version/ Windows 7 64bit /Dell XPS-8100  8GB RAM . It has no problem with MS Office 2007

    ThLgLe wrote:
    I've got problem with Ps CS5 when I use UNICODE fonts
    Dang!  My crystal ball is on the fritz again.
    Could you please describe a little more about what's going wrong for you, specifically?  Clarify what you mean by "use Unicode font".
    Your question might have been meaningful if everyone was seeing the same, obvious problem, but in fact Unicode character codes seem to show just what's expected in Photoshop in general if the font you're using has the glyphs.
    -Noel

  • UNICODE data files with SQLLDR

    how can i load UNICODE data files with SQLLDR.
    my Oracle instance is on UNIX with NLS_CHARACTERSET WE8ISO8859P1.
    I have .dat files extracted from SQL Server using bcp utility with -w option.
    When i use -c option i'm not getting the european characters correctly like the a and e with 2 dots on top....
    when i load UNICODE (-w) file with CHARACTERSET UTF8 in my control file, it doesnt go thru. Any solution for this ? Thanks !

    I just created a unicode textfile on windows with some westeuropean characters and imported it into we8iso8859p1 database on linux using controlfile parameter CHARACTERSET UTF16.
    They got all properly converted.
    As Justin mentioned, unicode on windows means generally UTF16 Little Endian.
    Best regards
    Maxim

  • Poor performance of CMP entity bean finder that uses unicode notation N''

    I am using Weblogic 6.1 with SQL Server 2000. I have an entity bean
    with a finder method that does a lookup based on a (indexed) varchar
    field. I noticed during testing that the performance of this finder
    method was much worse than other finders. I did some profiling of the
    SQL calls going from the Weblogic container to the database, and
    noticed that the query generated for the finder call used the unicode
    notation, which seems to result in very poor performance. If you run
    the following two queries through SQL Analyzer (or SQL Profiler),
    you'll notice a significant performance hit on the query that uses the
    unicode notation:
    example of generated SQL:
    SELECT WL0.field1, WL0.field2 ... FROM tblAccount WL0 WHERE
    WL0.accountId = N'40879'
    example of desired SQL:
    SELECT WL0.field1, WL0.field2 ... FROM tblAccount WL0 WHERE
    WL0.accountId = '40879'
    Is there any way to force it to generate the SQL without using the
    notation with the unicode 'N'?
    Thanks for any help,
    Don

    Don wrote:
    That worked (we use the Weblogic JDBC driver). The performance is MUCH
    better! Glad to help.
    Is there some place in the documentation where I should have
    seen this (ie. where can I find the documentation on other possibly
    useful connection properties)?It should be documented in the jdbc driver documents...
    Joe
    >
    Thanks,
    Don Tranquillo
    Joe Weinstein wrote:
    Hi. The driver does this to ensure that any 16-bit character string
    that Java has,
    is absorbed unaltered into the DBMS. There is no way to know a-priori
    whether
    the DBMS needs/wants an nvarchar datum or an 8-bit varchar datum. As
    you see,
    there is a big performance issue. You can tell the jdbc driver to
    send data
    as 8-bit (without the "N'" prefix) by setting a connection property:
    If you are using the weblogic mssqlserver driver, add the
    useVarChars=true
    property. If you are using the MS free driver or the DataDirect driver,
    add a property sendStringParametersAsUnicode=false.
    Joe
    Don wrote:
    I am using Weblogic 6.1 with SQL Server 2000. I have an entity bean
    with a finder method that does a lookup based on a (indexed) varchar
    field. I noticed during testing that the performance of this finder
    method was much worse than other finders. I did some profiling of the
    SQL calls going from the Weblogic container to the database, and
    noticed that the query generated for the finder call used the unicode
    notation, which seems to result in very poor performance. If you run
    the following two queries through SQL Analyzer (or SQL Profiler),
    you'll notice a significant performance hit on the query that uses the
    unicode notation:
    example of generated SQL:
    SELECT WL0.field1, WL0.field2 ... FROM tblAccount WL0 WHERE
    WL0.accountId = N'40879'
    example of desired SQL:
    SELECT WL0.field1, WL0.field2 ... FROM tblAccount WL0 WHERE
    WL0.accountId = '40879'
    Is there any way to force it to generate the SQL without using the
    notation with the unicode 'N'?
    Thanks for any help,
    Don

  • Modified Keyboard Layout (Unicode) not useable with different fonts

    Hi,
    I have created a customized unicode keyboard layout with german basic layout and polish characters supplied with the "Alt" key. I activated the layout and was able to type in most of the OSx applications BUT only with fonts Times New Roman and Arial. When I switched to a differnet font and typed normal chars they were displayed in the font style selected. When I typed the Polish characters defined via ALT + A for example, these chars were displayed in TimesNew Roman, not in the selected font e.g. comic mt...
    this was the case in ms office apps as well as in Apple Mail or other apps.
    Please help me out. I need a functional basic German keyboard layout with aditional keys defined under ALT+ somewthat. How can I get this stuff working, maybe without using Unicode? Do I have to modify the generic .RSC files with ResEdit, and does somebody have an Idea how to do this.
    Basically I need German keyboard with the mentioned addition of some polish keystrokes.
    Many thanks in advance
    thomas

    There is nothing wrong with your keyboard. Your problem is probably caused by the fact that not every font has the characters needed for Polish. Just open up Character Palette, go to 0142, and look in the Font Variation panel. That will show you the fonts that do have the slashed l, for example. They should all work fine, except in Appleworks and Word X, which cannot do Unicode.

  • How do I prove java uses unicode?

    Hi!
    I use a win98 computer in sweden with ansi cp1252.
    i run java in jbuilder 5.0 with jdk 1.3.0.
    I want to prove that java uses unicode and not the ascii tabell but if i try to write all char in a for loop for example i only get the ansi values. I want to prove that it uses unicode how can i do that?
    I have a suggestion that if i print a chinese sign for example that proves that java can handle many diffrent ascii tabells. but how do i do that and where should i put the font that is needed and where do i get it?
    Any suggestion for a solution ... plz message me :o)
    Anders.
    [email protected]

    The ASCI/ANSI character set is a subset of Unicode, so if you print all of them out you will just get the ASCII table. So, technically anything that uses Unicode uses the ASCII table. ;)
    Anyway, you can use the escape character \uXXXX where the X's are hexadecimal values. If you use a value greater than 255 than it will give you somthing that isn't ANSI. \u2122 is the trademark symbol, for example.
    I got this information from Core Java 2: Fundamentals if you're interested.

  • How do I use Edge Web Fonts with Muse?

    How do I use Edge Web Fonts with Muse - is it an update to load, a stand alone, how does it interface with Muse? I've updated to CC but have no info on this.

    Hello,
    Is there a reason why you want to use Edge Web Fonts with Adobe Muse?
    Assuming you wish to improve typography of your web pages, you should know that Muse is fully integrated with Typekit. This allows you to access and apply over 500 web fonts from within Muse. Here's how you do it:
    Select a text component within Muse, and click the Text drop-down.
    Select Add Web Fonts option, to pop-open the Add Web Fonts dialog.
    Browse and apply fonts per your design needs.
    Muse also allows you to create paragraph styles that you can save and apply to chunks of text, a la InDesign. Watch this video for more information: http://tv.adobe.com/watch/muse-feature-tour/using-typekit-with-adobe-muse/
    Also take a look at these help files to see if they help you:
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-1.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-2.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-3.html
    Hope this helps!
    Regards,
    Suhas Yogin

  • How do I use an external mic with the iPad4?

    How do I connect an external mic to the new iPad4? Older models seem to have worked, but the lightning connector causes a lot of problems. I would like to use my Zoom H1 with my iPad4 and GarageBand. Any ideas? Thanks so much!

    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
     Cheers, Tom

  • How do I use Qt and OpenGL with Visual Studio

    Hi! I mainly want to program in C++ and I want to use Qt and OpenGL with Visual Studio.
    I am currently revising C++ and later on i am going to start reading Qt and OpenGL. I have a background of
    Embedded firmware design(C and Assembly).
    The Visual Studio Version I have is 2013 ultimate. How do I use Qt and OpenGL with Visual Studio?
    Thanks
    Alexandros

    Hi ClassicalGuitar,
    The forum supports VS setup and installation. And your issue is not about the forum. I will move the thread to off-topic forum. Thanks for your understanding.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

Maybe you are looking for

  • Firefox crashes when I try to print from Yahoo mail and some web sites

    I am running Mac, OSX 10.4.11. Firefox has automatically upgraded me to version 3.6.15 and variations in between for months now. I have been having problems printing to my Epson CS5800F for at least a couple of weeks if not months. I'm not really sur

  • Editable ALV-No change in internal table

    Hello Experts,    I have an ALV output, in which I have a column as editable. I have generated the output using 'REUSE_ALV_GRID_DISPLAY'. I got to know that after changing the editable cell's value, if we double click the cell or if operate with any

  • Satellite A200 - Display driver stopped responding

    Periodically I see this warning: [http://s001.radikal.ru/i193/1002/2b/ee6a610aa864.jpg] It appears after short blackout by no reason. What is it? Satellite A200-1CR / Windows 7 Professional

  • XML property aliasing

    I have a problem: I receive a XML file in my transaction input <?xml version="1.0" encoding="UTF-8"?><DATA> <VALUE_1/> <VALUE_2/> </DATA> and I want to rename the property DATA with the name TAGS. After this step, I want to access to the tag using Tr

  • Raw formats not opening in Camera Raw

    Only got the software yesterday, got off to a good start, I can open Jpeg files in Camera Raw but I am not getting the same options for raw files. Camera is a nikon D90, shots download okay but appear small in the preview and I can't make them larger