I desparately need to read a Japanese Clarisworks cwk file!

Hello Folks;
I am a volunteer with an anime convention.
One of our japanese musical guests has sent us a list of tech requirements in a clarisworks file.
I need to import it to something current (or find a place where i can buy something old ) that preserves the japanese so that i can get it translated so that we can get the equipment rented or tell them they need to bring their own.
(why is is still in clarisworks? i suspect it's because the artist or author of the list is reluctant to change tools)
I have tried just about everything under the sun in the open source and shareware realm and had limited success.
With a shareware program who's name escapes me (i am at work) i was able to read the english text in the file (things like 'MacBook Pro' and 'ProTools') but none of the japanese because it all showed up as '?' chars.
Do any of you have any suggestions as to how i could resolve this problem?
tnx!
johnu

Hello
Since you're using x86 Mac, your only option will be, I think, to get AppleWorks 6 (namely 6.2.4), install and use it via Rosetta under OSX.
As far as I can tell, AW6.2.3 (Classic component paired with AW6.2.4) can open ClarisWorks 4J's files. Don't know about older versions of CW.
I think AW6.2.8 (Classic component paired with AW6.2.9) will be able to open CW4J's files as well BUT AW6.2.9 will not according to various reports on this forum. And you cannot use AW6.2.8 with your Mac because it does not provide Classic environment. So avoid AW6.2.9/6.2.8 package, which will be useless in your case.
Try eBay, for one, to get AppleWorks 6.2.4.
I found AW6.2.4 at eBay.com at the time of this writing.
Good luck,
H
PS. AW6.2.4/6.2.3 English version can open files created by CW4J (Japanese version) without problems if you have Japanese resources, such as fonts, properly installed in your system.

Similar Messages

  • Need to read data from a text file

    I need to read data from a text file and create my own hash table out of it. I'm not allowed to use the built in Java class, so how would I go implementing my own reading method and hash table class?

    It's not possible to read from a file without using classes from the core API*. You'll have to get clarification from your instructor as to which classes are and are not allowed.
    [http://java.sun.com/docs/books/tutorial/essential/io/]
    *Unless you write a bunch of JNI code to replicate what the java.io classes are doing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Need to read data from pipe separated file using POJO?

    Hi,
    I need to read data from pipe separated file using POJO.
    There is config.properties file which consists of the
    data mapping.
    Can you help me with sample code or help?
    Regards
    Regards
    Taton
    Edited by: Taton on Mar 7, 2009 4:41 PM

    It's not possible to read from a file without using classes from the core API*. You'll have to get clarification from your instructor as to which classes are and are not allowed.
    [http://java.sun.com/docs/books/tutorial/essential/io/]
    *Unless you write a bunch of JNI code to replicate what the java.io classes are doing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I need to read data from a text file and display it in a datagrid.how can this be done..please help

    hey ppl
    i have a datagrid in my form.i need to read input(fields..sort of a database) from a text file and display its contents in the datagrid.
    how can this  be done.. and also after every few seconds reading event should be re executed.. and that the contents of the datagrid will keep changing as per the changes in the file...
    please help as this is urgent and important.. if possible please provide me with an example code as i am completely new to flex... 
    thanks.....  

    It's not possible to read from a file without using classes from the core API*. You'll have to get clarification from your instructor as to which classes are and are not allowed.
    [http://java.sun.com/docs/books/tutorial/essential/io/]
    *Unless you write a bunch of JNI code to replicate what the java.io classes are doing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Need to read a field from flat file

    Hi All,
        In flat file i have  one field which may contain 100 enteries separated by delimanator ',' (comma).  There can be 1 , 10 or 100 enteries.   I need to put them in the internal table . Please suggest me .
        I have used the below logic .
    i split the field in 100 variables and then appending the internal table . the problem here is even if there is only one entry , the logic will append 99 blank enteries .  so can any one suggest , is there any other way do it . any Functon Modules available .
    Thanks.

    Hi Chetan,
    If i understand your requirement it is as below,
    Flat file.
    1,2,3,4,5,6,7,8,9,....
    1,2,3,4,5,6,7,8,9,....
    1,,,,,,,,,,,,,,,,,,,,
    Now you read the first line and split into an itab of type string, and you are worried about the third line where not all the fields have values and end up creating blank entries. to fix this, simply
    Sort the Itab, and use delete itab statement with the where clause as where column is ''.
    This should solve it.
    types: begin of t_data,
                line type string,
               end of data.
    data: li_file_line type standard table of t_data.
    split l_file_line at ',' into li_file_line.
    delete li_file_line where line = ''.

  • Read data from a text file, one line at a time.

    I need to read data from a text file, and display each line in a String Indicator on Front Panel. It displays each line, but I get Error 4, End Of Line, unless I enter an extra line of data in the file that I don't need. I tried Read From Text File.vi, made by Nat Instr, and it gave the same error.

    The Read from Text File.vi reads data from a text file line by line until the user stops the VI manually with the Stop button on the front panel, or until an error (such as "Error 4, End of file") occurs. If an error occurs, the Simple Error Handler.vi pops up a dialog that tells you which error occurred.
    The Read from Text File.vi uses a while loop, but if you knew how many lines you wanted to read, you could replace the while loop with a for loop set to read that many lines from the file.
    If you need something more dynamic because the number of lines in your files vary, then you could change the code of the Read from Text File.vi to the expect "Error 4, End of file" and handle it appropriately. This would require unbundling the error cluster that comes fro
    m the Read File function with the Unbundle By Name function, so that you can expose the individual error "status" and error "code" values stored in the cluster. If the value of the error "code" is 4, then you can change the error "status" from true to false, and you can rebundle the cluster with the Bundle by Name function. Setting the error "status" to false instructs the Simple Error Handler to ignore the error. Otherwise, pass the original error cluster to the Simple Error Handler.vi, so that you can see what the error is.
    Of course, if you're not interested in what the errors are, you could just remove the Simple Error Handler.vi, but then you wouldn't see any error messages.
    Best of Luck,
    Dieter
    Dieter Schweiss
    Applications Engineer
    National Instruments

  • Help! How to read data from an Excel file?

    Hi,
    I need to read data from an Excel file that may contain more then one table in a sheet. How can I read them?
    I would be eternally grateful to anyone who can give me any information.

    Did you try POI from Apache?
    http://jakarta.apache.org/poi/index.html

  • Reading contents of uploaded excel file in web dynpro java

    Hi All.
    I am aware how to provide facility to upload files in web dynpro java. But my requirement is that on uploading a particular file (for eg. an excel file having 10 columns), I need to read the contents of that file and store it in a table in R/3.Can anyone suggest a way how I can read the contents of the uploaded file?
    Thanks and Regards,
    Saurabh.

    Hi.
    I am having the following requirement : I have a FileUpload UI element where user clicks Browse button, selects a file from the local system and presses a Upload button. Upon pressing Upload, the name of the selected file and the contents of the file should be shown.
    In the View context, I have two value attributes: FileName of type String and FileResource of type binary.
    This is the code that I have in the Upload button action handler :
      public void onActionUpload(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionUpload(ServerEvent)
        IWDAttributeInfo attributeInfo = wdContext.getNodeInfo().getAttribute(
                 IPrivateReadExcelView.IContextElement.FILE_RESOURCE);
        IWDModifiableBinaryType binaryType = (IWDModifiableBinaryType)attributeInfo.
                 getModifiableSimpleType();
        IPrivateReadExcelView.IContextElement element = wdContext.createContextElement();
        String fname = binaryType.getFileName();
        wdComponentAPI.getMessageManager().reportSuccess("File selected - "+fname);  //Statement 1
         try {
              wdComponentAPI.getMessageManager().reportSuccess("Successful");    // Statement 2
              InputStream in = new FileInputStream(fname);
              HSSFWorkbook wb = new HSSFWorkbook(in);
              wdComponentAPI.getMessageManager().reportSuccess("Successful");    //Statement 3
              int sheetsNo = wb.getNumberOfSheets();
              for (int i=0;i<sheetsNo;i++) {
                   HSSFSheet sheet = wb.getSheetAt(i);
                   Iterator rowsNo = sheet.rowIterator();
                   while(rowsNo.hasNext()) {
                        HSSFRow rows = (HSSFRow)rowsNo.next();
                        Iterator colsNo = rows.cellIterator();
                        while(colsNo.hasNext()) {
                             HSSFCell cell = (HSSFCell)colsNo.next();
                             wdComponentAPI.getMessageManager().reportSuccess("File uploaded" +
                                  "successfully");
                             if(cell.getCellType()==1) {
                                  wdComponentAPI.getMessageManager().reportSuccess("00000"+
                                       cell.getStringCellValue());
                             else if(cell.getCellType()==0) {
                                  String str=""+cell.getNumericCellValue();
                                  wdComponentAPI.getMessageManager().reportSuccess("11111"+str);
         catch(Exception e) { wdComponentAPI.getMessageManager().raisePendingException();
        //@@end
    On pressing Upload button, name of selected file is being shown(Statement 1). I am also getting Statement 2 in the output. However I am not getting Statement 3 onwards.
    Where am I going wrong? Can anyone shed some light on this?

  • How to read the contents of Uploaded File Data?

    Dear Experts,
    I want to develop one webdynpro application in which the iview contains the FileUpload option.and after uploading i need to read the contents of the file.
    Can you plz guide me how to achieve this?
    its very much helpfull if u have any sample project / code on this...plz do send it to [ycsvissu at gmail dot com]
    Regards,
    Viswes.

    Ike,
    Do you have a sample. I am searched so much in this forum for samples. I looked on SAX Parser. I did not find any samples.
    Please help me.
    Thank you for your posting.
    Padma.

  • Read the content of a file (via socket)

    Hi,
    I need to read the content of a file (.txt, or better, .jpg) and to write it again in another file.
    I have this code (in Javascript):
        conn = new Socket;
        conn.encoding = "BINARY";
        if (conn.open ("127.0.0.1:8888")) {
        conn.timeout=30;
        conn.writeln("GET variousFiles/file.jpg HTTP/1.1");
        reply = conn.read(999999);
        conn.close();
        var file = new File("C:/APPS/New_File.txt");
        file.encoding = 'BINARY';
        var open_file = file.open("w+");
        file.write(reply);
        } else { alert("Errore: " + conn2.error); }
    However my new file is always empty, because I can not read the content of the first file.
    My variable "reply" is always empty.
    Thanks and best regards.

    There is a particular case with sugested function, if content is generated on the fly by the server -php, cgi, etc.-
    In this case, http server doesn´t knows total size of response data, so response shows a chunked transfer-encoding header and data is parted in chunks, each one starting with it´s size, and following the data.
    HTTP/1.1 200 OK
    Date: Tue, 30 Apr 2013 12:43:41 GMT
    Server: Apache/1.3.31 (Win32) mod_fastcgi/2.4.1
    Connection: close
    Transfer-Encoding: chunked
    Content-Type: image/jpeg
    f49
    ÿØÿà  JFIF
    I´m using this function to decode parted response, with initial chunkedString with firs chunk size; in this case, f49:
    PartsSeparator="\r\n";
    function getPartedBody(partedBodyString) {
        var separatorPosition=partedBodyString.indexOf(PartsSeparator);
        var chunkSize=new Number("0x"+partedBodyString.substring(0,separatorPosition));
        separatorPosition+=PartsSeparator.length;
        var bodyString=new String("BINARY");
        bodyString="";
        if (chunkSize>0)
            bodyString=partedBodyString.substring(separatorPosition,separatorPosition+chunkSize)+
                getChunkedResponse(partedBodyString.substring(separatorPosition+chunkSize+PartsSeparator. length));
        return bodyString;
    Hope this helps
    regards

  • Kinect Explorer WPF C# read depth data from the file and conversion to skeleton

    Hello,
    I am using Kinect sensor to do some research on biometrics. Since it is impossible to find people to collect some samples, I would like to use samples from the TUM - GAID database, where there exist Color View and Depth View (in .raw format) samples. Therefore,
    I need to read these samples from the file and do a batch processing, instead of performing real-time collecting of samples (where I can take automatically the Skeleton view using the Kinect SDK). So, I need help on
    1. Reading the data from the file (instead of activating the Kinect sensor) and give this data as an input for conversion to a skeleton
    2. Read the .raw files 
    Thank you very much
    Kind regards

    Hiya,
     I doubt this forum, C Sharp, will provide much help. You are asking about the Kinects system not C#
    language. However, you can try this link; http://kinectforwindows.codeplex.com/
    Hope this help. Thanks :)

  • Reading data from a text file

    Okay so basically i need to read some text from a file, and display it in a JTextArea. My problem is that when i read the data and display it, its all in one big long line. e.g:
    in text file:
    Hi
    Hi
    Hi
    Hi
    in textarea:
    HiHiHiHi
    I was wondering if it is possible to use some kind of a method that determines when reading the file if its at the end of a line or not, then create a new line.
    this is part of my code:
    chooser is a JFileChoose object.
                             File theFile = new    File(chooser.getSelectedFile().getPath());
                             FileReader reader = new FileReader(theFile);
                             BufferedReader buffer = new BufferedReader(reader);
                             String ss;
                             String aa = "";
                             while((ss = buffer.readLine()) !=null) {
                                  aa = aa + ss;
                             text.setText(aa);
                             reader.close();
    //Rest of program continues here

    Hii , I think this will help you ,,,
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    import java.util.*;
       class Test5   extends JFrame
            JPanel mainPane;
            JButton doTestBtn = new JButton("Press");
            JTextArea show = new JTextArea(6,6);
            JFileChooser choose = new  JFileChooser();
            public Test5()
                 GridLayout gl = new GridLayout(1, 2);
                 gl.setHgap(10);
                 gl.setVgap(10); 
                 mainPane = new JPanel();
                 JPanel  side1 = new  JPanel();
                 JPanel  side2 = new  JPanel();
                 mainPane.add(side1);
                 mainPane.add(side2);
                 side1.add(doTestBtn);
                 side1.add(show);
                 doTestBtn.addActionListener(new ActionListener()
                     public void actionPerformed(ActionEvent e)
                          doTestBtnAction();
            private void doTestBtnAction()
                try
                   int tt =  choose.showOpenDialog(Test5.this);
                   if(tt == JFileChooser.APPROVE_OPTION )
                      File file = choose.getSelectedFile();
                      FileReader reader = new FileReader(file);
                      BufferedReader buffer = new BufferedReader(reader);
                          String ss;
                          String aa = "";
                          while((ss = buffer.readLine()) !=null)
                                  aa = aa + ss;
                      show.append(aa);
                      reader.close();
               }catch(IOException ex)
            private void createGUI()
                getContentPane().add(mainPane);
                setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                setSize(200,100);
                pack();
                setVisible(true);
           private static void createAndShowGUI()
              Test5 rn = new Test5();
               rn.createGUI();
           public static void main(String[] args)
            javax.swing.SwingUtilities.invokeLater(new Runnable()
                public void run()
                    createAndShowGUI();
       }Thanks ,
    sb

  • Help needed in setting up Japanese Database

    Hi there,
    Help needed in setting up Japanese Database.
    I created database with UTF8 character set on Sun Solaris O/S.
    Oracle version 8.1.7.
    I am accessing the DB through SQL*Plus (Windows client).
    I downloaded the Japanese font on client side and also set the NLS_LANG environment variable to Japanese_Japan.UTF8. Still, I am not able to view Japanese characters. O/S on client side is Windows 2000 professional (English). Is O/S (client) need to be Japanese O/S? When I try to retrieve sysdate, its displaying in Japanese but not all characters in Japanese. Can anyone help me out how to set up the client and is there any parameters to be setup at server side? I also tried to insert japanese characters into table through client, but it displaying as "?????" characters. Any help in this regard is appreciated.
    Thanks in advance,
    -Shankar

    lol
    your program is working just fine.
    do you know what accept does? if not read below.
    serversocket.accept() is where java stops and waits for a (client)socket to connect to it.
    only after a socket has connected wil the program continue.
    try putting the accept() in its own little thread and let it wait there while your program continues in another thread

  • Do we need to convert Chinese/Japanese properties to Unicode?

    Dear friends,
    I am new to this Internationalization concept. I have a web application and I am looking forward to implement Internationalization.
    To make my app support muti-language, I am using Locale & Resource bundle to find properties files based on Country and Language. I have different properties files based on countries. This works fine when there are unicode characters and no special characters in the property file.
    For eg. the application doesn't displays Chinese/Japanese characters with System.out.println at all. It displays something weird symbols..
    P.S : I haven't converted Chinese/Japanese properties files to Unicode with native2ascii tool?
    An important question for me is,
    1) Do we need to convert Chinese/Japanese or any non-unicode related properties files with native2ascii tool?
    2) Is there any other way to read such properties files without converting them with native2ascii tool?
    3) We have made fixed UTF-8 format policy for the app. Is there any way to read those properties file with UTF-8 mechanism without need to convert the properties files?
    4) If anyone has quick example code for displaying Chinese/Japanese characters from properties file, then that would be a great help.
    Thanks a million. Any help would be highly appreciated.
    sachin

    System.out.println display depends on the system locale. If you are running on a US English system, Chinese and japanese will not display correctly in the console.
    Your properties file questions:
    1) Do we need to convert Chinese/Japanese or any non-unicode related properties files with native2ascii tool? yes
    2) Is there any other way to read such properties files without converting them with native2ascii tool? - no
    3) We have made fixed UTF-8 format policy for the app. Is there any way to read those properties file with UTF-8 mechanism without need to convert the properties files? no

  • Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9alredy

    Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9 is alredy installed on computer. Is this a 64 bit ossue although I am sure I did not have this problem prior to a replacement hard drive being installed.

    What is your operating system, browser?
    What is the exact message you are getting?

Maybe you are looking for

  • Converting to text/xml

    Hi, I get this error in sxmb_moni: "Delivery Exception: invalid content type for SOAP:TEXT/HTML." I have set the ContentType with the messageTransformBean in the SOAP receiver adapter. but I also need to set parameter "Do not use SOAP envelope", add

  • Question: Keep getting "Renew Subscription" message

    I purchased the Creative Cloud educator package, so I am charged monthly access for the entire year. I am able to open Photoshop just fine, but when I try to open Illustrator, I keep getting a pop-up that says, "Renew Your Subscription." I follow the

  • Clip art and stock photos

    Hi; I'm working on Grant's challenge and I was looking for clip art and photos to use. I searched for free ones but the sites I found are not places I want to go because they do not look like shady places. Any recommendations?

  • After Effects CS3 and Windows 7 (32 or 64bit)

    Hi just a quick question.  As I'm not a real tech expert.  I was going to upgrade to Windows 7.  In the 32 bit version is the amount of RAM use limited to only 4 gigabytes? And in the 64 bit version is After Effects CS3 free to use as much you put in

  • Why can't I Rotate the pictures in my stationary?

    I think the subject says it all but if you need more... When I dragged the photos in the photo areas within the stationary all of my pictures rotated 90 degrees counter clockwise. And I don't know how to put them to their rightful alignment. Any help