Converting to WIN1252

I have some questions regarding converting data to WIN1252 format.  We have the following data flow:
SAP R/3 -> SAP PI -> 3rd Party
Our 3rd Party is requiring they receive the data in WIN1252 format.  I'm trying to determine whether this conversion should be done on SAP R/3 or SAP PI?  The R/3 data is entered by the user into a front end (dialog program) and saved to ztables.  The ztable data is sent to PI via proxy.  PI sends the data to the 3rd party via AS2 adapter. 
Where would be the best place to do the WIN1252 conversion and how is it done?

Hi Susan,
You need to do codepage conversion. For how to do this please check stefans response in this thread:
Re: Code Page Conversion using PI ? (ANSI  Windows to UTF-8)
Re: Receiver File adapter encoding
Take a look at this thread also:
Re: How to read oracle database contain Chinese Character ?
Regards,
---Satish

Similar Messages

  • Problem converting £ and € symbols

    Following conversion of a database to al32utf8 I noticed problems with converted currency symbols. This is a sample test I ran to reproduce:
    1. Set the code page to 1252 as this is how the data was inserted in the win1252 database and create test data
    sql> prompt set codepage
    set codepage
    sql> host chcp 1252
    Active code page: 1252
    sql>
    sql> prompt create test data
    create test data
    sql> create table bc_test
      2  as select '£ 1' col1
      3           ,'£'   col2
      4     from    dual;
    sql>
    2. create procedures for checking characters:
    sql> create test procs:
      2
    sql> create or replace procedure check_chars (v1 in varchar2)
      2  as
      3    v2 varchar2(1 char);
      4    n  integer := 0;
      5  begin
      6    dbms_output.put_line('input: "'||v1||'"');
      7    dbms_output.put_line('pos  chr  ascii');
      8    dbms_output.put_line('---  ---  -----');
      9    if v1 is not null then
    10      for i in 1..length(v1)
    11      loop
    12        v2 := substr(v1,i,1);
    13        dbms_output.put_line(lpad(i,3)||'   '||v2||'   '||asciistr(v2));
    14      end loop;
    15    end if;
    16  end;
    17  /
    sql> sho err
    No errors.
    sql>
    sql>
    sql> create or replace procedure check_col1
      2  as
      3    v1 varchar2(1000);
      4  begin
      5    select col1
      6    into   v1
      7    from   bc_test
      8    where  rownum = 1;
      9    check_chars (v1);
    10  end;
    11  /
    sql> sho err
    No errors.
    sql>
    sql> create or replace procedure check_col2
      2  as
      3    v1 varchar2(1000);
      4  begin
      5    select col2
      6    into   v1
      7    from   bc_test
      8    where  rownum = 1;
      9    check_chars(v1);
    10  end;
    11  /
    sql> sho err
    No errors.
    3. Run procedure to check each column, then convert to al32utf8 and recheck:
    sql>
    sql> prompt check col1
    check col1
    sql> exec check_col1
    input: "£ 1"
    pos  chr  ascii
      1   £   \00A3
      2
      3   1   1
    sql>
    sql> prompt check col2
    check col2
    sql> exec check_col2
    input: "£"
    pos  chr  ascii
      1   £   \00A3
    sql>
    sql> prompt convert col1
    convert col1
    sql> update bc_test
      2  set    col1 = sys_op_csconv(col1,'AL32UTF8','WE8MSWIN1252');
    sql>
    sql> prompt check col1
    check col1
    sql> exec check_col1
    input: "£ "
    pos  chr  ascii
      1      \00C2
      2   £   \00A3
      3
    sql>
    sql> prompt convert col2
    convert col2
    sql> update bc_test
      2  set    col2 = sys_op_csconv(col2,'AL32UTF8','WE8MSWIN1252');
    sql>
    sql> prompt convert col2
    convert col2
    sql> exec check_col2
    input: ""
    pos  chr  ascii
    sql>
    sql> rollback;
    sql>
    The 1st column has had two extra characters added and the second has had the £ converted to null
    4. Try with code page 65001
    sql> prompt change codepage
    change codepage
    sql> host chcp 65001
    Active code page: 65001
    sql>
    sql> prompt update col1 again
    update col1 again
    sql> update bc_test
      2  set    col1 = sys_op_csconv(col1,'AL32UTF8','WE8MSWIN1252');
    sql>
    sql> prompt check col1
    check col1
    sql> exec check_col1
    input: "£ "
    pos  chr  ascii
      1   �   \00C2
      2   �   \00A3
      3
    sql>
    sql> prompt update col2
    update col2
    sql> update bc_test
      2  set    col2 = sys_op_csconv(col2,'AL32UTF8','WE8MSWIN1252');
    sql>
    sql> prompt update col2
    update col2
    sql> exec check_col2
    input: ""
    pos  chr  ascii
    Same result, and matches what the DMU did
    I get similar results with Euro symbols, they are converted to multiple multibyte characters
    I can fix the data by running a replace, but what is happening? The data in most cases was added by running a script in sql plus, though some could have been via application tools.
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for 64-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production

    The behavior from your testcase is expected.
    sql> create table bc_test
      2  as select '£ 1' col1
      3           ,'£'   col2
      4     from    dual;
    When run in a WE8MSWIN1252 database, this is effectively creating a table with 2 columns of 3 bytes and 1 byte in length.
    sql> update bc_test
      2  set    col1 = sys_op_csconv(col1,'AL32UTF8','WE8MSWIN1252');
    When you update the column by converting its value from WE8MSWIN1252 to AL32UTF8, the 8-bit currency symbol expands in size which causes the converted value to be truncated to the column limit.
    sql> exec check_col1
    input: "£ "
    pos  chr  ascii
      1      \00C2
      2   £   \00A3
      3
    Here you're seeing the truncated conversion result due to the column size limit (3 bytes). The Pound sign is 0xC2A3 in AL32UTF8.
    The DMU scan will detect size expansion over limit issues and block the conversion in such cases.

  • Need to a voltage converter to run US-bought 110v HP Printers in 220v Pakistan any recommendations?

    I Purchased Three Printers 
    1. 
    HP LaserJet Enterprise 500 MFP M525dn(CF116A)
    2.
    HP Color LaserJet Enterprise CP4025n Printer(CC489A)
    3.
    HP LaserJet P2055d Printer (CE457A) -
     All of them three operates on 110v USA.  but i need them to use in 220V . Can anyone recommend me any good Voltage converter ?
    This question was solved.
    View Solution.

    Hi,
    Before go out to buy a converter/transformer  (you need over 2KW for all 3 of them), please check the switches at the back, they may have switches to switch from 110V to 220V. I don't know your market, my suggestion: talk with an electrician who knows the real world much better.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • ALL MY DESKTOP APPS CONVERTED TO PDF FILES.

    After sending an urgent email attachment in Adobe PDF to Government Offcom, all my Desktop applications in windows 7 64 bit have been converted to PDF files and cannot be opened.   The attachment used was sent to me by my Secretary remotely using an old MAC.
    I can return my laptop to normal operation by un installing my Adobe Reader 11 app, but the problem returns when I re Download Adobe Reader
    11 again.     After discussing this with Adobe Technical in London they advised me to raise this issue with your Adjudicators in this Forum. 
    Please assist asap as this is very urgent right now for several genuine reasons.
    Many thanks.   Derek Horder.

    See if anything in here helps: https://helpx.adobe.com/acrobat/kb/application-file-icons-change-acrobat.html

  • Which is best app to convert voice memos to text?

    There must be a way to import iPhone 5s voice memos, some 20 minutes long into editable text. Recommendations would be appreciated.

    SORRY! WHAT I MEANT TO ASK WAS "I WANT TO EXPORT  YOUTUBE & FACEBOOK VIDEOS TO ITUNES. WHAT IS THE BEST APP. TO USE TO CONVERT THESE VIDEOS INTO A FORMAT THAT IS ACCEPTABLE TO ITUNES. WHAT IS THE BEST FORMAT TO USE. THANK YOU

  • Need to convert JApplet to JFrame

    I need to write code for where I have 60 balls bouncing around inside a window. The client will then be able to select a button and it will pull out a ball with the number 1-60 written on it. The user will be able to do this up to 7 times. Each time it is done the past numbers that have already appeared can not reappear. What I am stuck on right now is geting my balls into a JFrame. Can anyone give advice or show how to. I currently have my 60 balls running in a JApplet. Here is the JAVA code and the HTML code. Thanks!
    Here is the JAVA code
    import java.awt.*;
    import java.applet.*;
    import java.util.*;
    import javax.swing.*;
    class CollideBall{
    int width, height;
    public static final int diameter=20;
    //coordinates and value of increment
    double x, y, xinc, yinc, coll_x, coll_y;
    boolean collide;
    Color color;
    Graphics g;
    Rectangle r;
    //the constructor
    public CollideBall(int w, int h, int x, int y, double xinc, double yinc, Color c){
    width=w;
    height=h;
    this.x=x;
    this.y=y;
    this.xinc=xinc;
    this.yinc=yinc;
    color=c;
    r=new Rectangle(150,80,130,90);
    public double getCenterX() {return x+diameter/2;}
    public double getCenterY() {return y+diameter/2;}
    public void alterRect(int x, int y, int w, int h){
    r.setLocation(x,y);
    r.setSize(w,h);
    public void move(){
    if (collide){  
    double xvect=coll_x-getCenterX();
    double yvect=coll_y-getCenterY();
    if((xinc>0 && xvect>0) || (xinc<0 && xvect<0))
    xinc=-xinc;
    if((yinc>0 && yvect>0) || (yinc<0 && yvect<0))
    yinc=-yinc;
    collide=false;
    x+=xinc;
    y+=yinc;
    //when the ball bumps against a boundary, it bounces off
    if(x<6 || x>width-diameter){
    xinc=-xinc;
    x+=xinc;
    if(y<6 || y>height-diameter){
    yinc=-yinc;
    y+=yinc;
    //cast ball coordinates to integers
    int x=(int)this.x;
    int y=(int)this.y;
    //bounce off the obstacle
    //left border
    if(x>r.x-diameter&&x<r.x-diameter+7&&xinc>0&&y>r.y-diameter&&y<r.y+r.height){
    xinc=-xinc;
    x+=xinc;
    //right border
    if(x<r.x+r.width&&x>r.x+r.width-7&&xinc<0&&y>r.y-diameter&&y<r.y+r.height){
    xinc=-xinc;
    x+=xinc;
    //upper border
    if(y>r.y-diameter&&y<r.y-diameter+7&&yinc>0&&x>r.x-diameter&&x<r.x+r.width){
    yinc=-yinc;
    y+=yinc;
    //bottom border
    if(y<r.y+r.height&&y>r.y+r.height-7&&yinc<0&&x>r.x-diameter&&x<r.x+r.width){
    yinc=-yinc;
    y+=yinc;
    public void hit(CollideBall b){
    if(!collide){
    coll_x=b.getCenterX();
    coll_y=b.getCenterY();
    collide=true;
    public void paint(Graphics gr){
    g=gr;
    g.setColor(color);
    //the coordinates in fillOval have to be int, so we cast
    //explicitly from double to int
    g.fillOval((int)x,(int)y,diameter,diameter);
    g.setColor(Color.white);
    g.drawArc((int)x,(int)y,diameter,diameter,45,180);
    g.setColor(Color.darkGray);
    g.drawArc((int)x,(int)y,diameter,diameter,225,180);
    public class BouncingBalls extends Applet implements Runnable {
    Thread runner;
    Image Buffer;
    Graphics gBuffer;
    CollideBall ball[];
    //Obstacle o;
    //how many balls?
    static final int MAX=60;
    boolean intro=true,drag,shiftW,shiftN,shiftE,shiftS;
    boolean shiftNW,shiftSW,shiftNE,shiftSE;
    int xtemp,ytemp,startx,starty;
    int west, north, east, south;
    public void init() {  
    Buffer=createImage(getSize().width,getSize().height);
    gBuffer=Buffer.getGraphics();
    ball=new CollideBall[MAX];
    int w=getSize().width-5;
    int h=getSize().height-5;
    //our balls have different start coordinates, increment values
    //(speed, direction) and colors
    for (int i = 0;i<60;i++){
    ball=new CollideBall(w,h,50+i,20+i,1.5,2.0,Color.white);
    /* ball[1]=new CollideBall(w,h,60,210,2.0,-3.0,Color.red);
    ball[2]=new CollideBall(w,h,15,70,-2.0,-2.5,Color.pink);
    ball[3]=new CollideBall(w,h,150,30,-2.7,-2.0,Color.cyan);
    ball[4]=new CollideBall(w,h,210,30,2.2,-3.5,Color.magenta);
    ball[5]=new CollideBall(w,h,360,170,2.2,-1.5,Color.yellow);
    ball[6]=new CollideBall(w,h,210,180,-1.2,-2.5,Color.blue);
    ball[7]=new CollideBall(w,h,330,30,-2.2,-1.8,Color.green);
    ball[8]=new CollideBall(w,h,180,220,-2.2,-1.8,Color.black);
    ball[9]=new CollideBall(w,h,330,130,-2.2,-1.8,Color.gray);
    ball[10]=new CollideBall(w,h,330,10,-2.1,-2.0,Color.gray);
    ball[11]=new CollideBall(w,h,220,230,-1.2,-1.8,Color.gray);
    ball[12]=new CollideBall(w,h,230,60,-2.3,-2.5,Color.gray);
    ball[13]=new CollideBall(w,h,320,230,-2.2,-1.8,Color.gray);
    ball[14]=new CollideBall(w,h,130,300,-2.7,-3.0,Color.gray);
    ball[15]=new CollideBall(w,h,210,90,-2.0,-1.8,Color.gray);*/
    public void start(){
    if (runner == null) {
    runner = new Thread (this);
    runner.start();
    /* public void stop(){
    if (runner != null) {
    runner.stop();
    runner = null;
    public void run(){
    while(true) {
    Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
    try {runner.sleep(15);}
    catch (Exception e) { }
    //move our balls around
    for(int i=0;i<MAX;i++)
    ball[i].move();
    handleCollision();
    repaint();
    boolean collide(CollideBall b1, CollideBall b2){
    double wx=b1.getCenterX()-b2.getCenterX();
    double wy=b1.getCenterY()-b2.getCenterY();
    //we calculate the distance between the centers two
    //colliding balls (theorem of Pythagoras)
    double distance=Math.sqrt(wx*wx+wy*wy);
    if(distance<b1.diameter)
    return true;
    return false;
    private void handleCollision()
    //we iterate through all the balls, checking for collision
    for(int i=0;i<MAX;i++)
    for(int j=0;j<MAX;j++)
    if(i!=j)
    if(collide(ball[i], ball[j]))
    ball[i].hit(ball[j]);
    ball[j].hit(ball[i]);
    public void update(Graphics g)
    paint(g);
    public void paint(Graphics g)
    gBuffer.setColor(Color.lightGray);
    gBuffer.fillRect(0,0,getSize().width,getSize().height);
    gBuffer.draw3DRect(5,5,getSize().width-10,getSize().height-10,false);
    //paint our balls
    for(int i=0;i<MAX;i++)
    ball[i].paint(gBuffer);
    g.drawImage (Buffer,0,0, this);
    Here is the HTML code
    <html>
    <body bgcolor="gray">
    <br><br>
    <div align="center">
    <applet code="BouncingBalls.class" width="1000" height="650"></applet>
    </div>
    </body>
    </html>

    In the future, Swing related questions should be posted in the Swing forum.
    First you need to convert your custom painting. This is done by overriding the paintComponent() method of JComponent or JPanel. Read the Swing tutorial on [Custom Painting|http://java.sun.com/docs/books/tutorial/uiswing/TOC.html].
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    Don't forget to use the [Code Formatting Tags|http://forum.java.sun.com/help.jspa?sec=formatting], so the posted code retains its original formatting.

  • AiO Remote iOS - Google drive convert file automatically

    Hello Expert!
    when i scan and upload on my google drive, google drive automatically convert the file in google docs format.
    i already disabled the automatic convert in goole drive settings but same issue.
    only aio remote - last version on app store installed - has this problem.
    Any suggestion?
    Thanks

    Hello,
    I tried to duplicate the issue you're seeing and I can't. Here's what I did... used the AiO Remote app, took a pic of a handwritten note, saved as a PDF, and then shared to my Google Drive. The file type is still a PDF.
    What type of files are you working with? Does the extension change happen on everything you send to Google Drive?
    Miles
    HP Employee

  • I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    The application Acrobat provides no language translation capability.
    If you localize the language for OS, MS Office applications, Acrobat, etc to the desired language try again.
    Alternative: transfer a copy of content into a web based translation service (Bing or Google provides a free service).
    Transfer the output into a word processing program that is localized to the appropriate language.
    Do cleanup.
    Be well...

  • Emac Fire Wire to RCA DV Converter

    Is there a Converter out there like the "Apple Mini-DVI to Video Adapter" for the Emac?

    The same converter should also work on your eMac.

  • Just subscribed to pdf to xls converter; can't get it to work

    Just subscribed to pdf to xls converter but cannot use it.  Just keep getting the log in page

    HI,
    Thank you for your subscription.
    Please try to log in at https://cloud.acrobat.com with your Adobe ID and password and let me know if you still cannot log in.
    Thank you.
    Hisami

  • How to edit a Animated Gif file and convert to SWF

    I am using the creative cloud with fireworks. I chose the free trial with buying in mind if I saw it work properly. I simply want to upload an animated GIF file and then download it as a SWF file. I saw someone on youtube do this and it's not that if I get on the correct page I would not know how to do that but I just cannot find how to get the GIF into the software to edit. It has just simply put them in the creative cloud folder which can open them on IE> How do i make it available to edit and convert to SWF please? Thanks in advance.

    You will likely get better program help in a program forum
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • How open images from other programs & convert to tiff?

    I am new to digital photography. I usually take 2 to 3 MB images with my Canon Rebel XT and use iPhoto as my basic program to organize images, create albums, and do very basic editing. I'm running on a G4 Powerbook with OS10.3. I expect to upgrade to iPhoto6 soon. I also use Canon's Image Browser (because it does a better job of compression for emailing that my present iPhoto) and an abbreviated version of ArcSoft PhotoStudio which came bundled with my Canon and has editing tools similar to Adobe Photoshop Elements.
    So far I usually use iPhoto's "Preferences/Open in Other" command when I want to open one or more selected images in one of the other programs. I have not found any easy way to locate an image while working in ImageBrowser or PhotoStudio, because iPhoto assigns folder numbers by date, so I'd have to know in which of many numbered folders to look. Placing images into iPhoto albums does not help because while the album names appear in these program's tree view they appear unable to link to them. Canon refuses to answer questions relating to iPhoto and referred me to ArcSoft for any questions about PhotoStudio. ArcSoft says they provide no support for programs bundled with hardware. Typical. What I'd like to know is:
    1. Is there any easy way to locate iPhoto images while I'm in one of these other programs?
    2. Is there any way to copy an entire album from iPhoto to one of these other programs?
    3. I've attended two different digital photo classes in which instructors felt it desirable to convert jpegs to tiffs. One felt it was necessary to reduce the loss of pixels during editing, and the other does it for any image he plans to print, claiming it improves print quality. They recommended getting a special conversion program. Based on responses here to the topic: "Want to save jpeg file as tiff before making edits to photos", others feel that for most amateurs like me this is a minor issue, especially with iPhoto. Testing this I have found, as Kevin Wolfe1 says Feb 12, that compression of a jpeg appears to occur primarily on the first edit and does not sognificantly degrade the image. The programs I mention above appear able to save an edited jpeg as a tiff if desired, but I've noticed also that iPhoto's Export command includes the option to export a jpeg (to desktop or another folder) as a tiff. When I tried this, it did create a file identified as .tif, and I can drag that file back into the iPhoto Library where it remains named as a .tif, and according to iPhoto, this file contains about 5 times the MBs the original jpeg had. What I'm curious to know is, is that a true tiff file or is iPhoto kidding me?
    Powerbook G4   Mac OS X (10.3.9)  

    Typical. What I'd like to know is:
    1. Is there any easy way to locate iPhoto images
    while I'm in one of these other programs?
    In iPhoto 06 you have the option to NOT move imported image file in to the iPhoto library. So they images stay in the place where you put them. With this option the iPhoto library only contains "pointers".
    2. Is there any way to copy an entire album from
    iPhoto to one of these other programs?
    Can't you open an album, select all the images then then use "export"
    3. I've attended two different digital photo classes
    in which instructors felt it desirable to convert
    jpegs to tiffs.
    If you are worried about this then you should be shooting RAW format. In your case the camera is doing the JPG conversion and the "damage" is unrecoverable.
    iPhoto 6 and Tigeer (10.4.x) has a little bit better supportfor raw format images i yu are worried about something that makes such a small difference then you should be woried about the stuf that makes a large difference first.
    You might want to concider this workflow:
    1) use Canon software to download files from camera
    2) use Canon software to convert to TIFF
    3) Import TIFF to iPhoto (using option to NOT consolidate library
    4) specify arcedit, PS or Gimp as your external editor
    Others might want to lt iPhoto do the import and raw conversion but you said you wanted thr photos to be stored outside of iPhoto's library system you you can find them with out having to do an export.

  • How to convert class file

    Hi all, I am new in java card development.
    This is my environment setting:
    @echo off
    set JC_HOME=C:\JavaCard\java_card_kit-2_2
    set JAVA_HOME=C:\j2sdk14103
    set PATH=.;%JC_HOME%\bin;%PATH%
    I have created the Wallet applet according to 'Zhiqun Chen" text book and named it WalletApp.java.
    I have compiled this file to a class file.
    This is where is I saved my file
    C:\JavaCard\java_card_kit-2_2\samples\src\com\sun\javacard\samples\WalletApp\WalletApp.java.
    But I don't really understand how to convert the class file.
    May I know what is this for?
    -out EXP JCA CAP
    -exportpath
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1:0x1
    com.sun.javacard.samples.HelloWorld.HelloWorld
    com.sun.javacard.samples.HelloWorld
    0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1 1.0
    must save this in what file?
    I tried to type in the command line below (and the result):
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sap
    les\Wallet\Wallet.opt
    error: file scr\com\sun\javacard\saples\Wallet\Wallet.opt could not be found
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    use file for all options and parameters to converter
    Where options include:
    -classdir <the root directory of the class hierarchy>
    set the root directory where the Converter
    will look for classes
    -i support the 32-bit integer type
    -exportpath <list of directories>
    list the root directories where the Converter
    will look for export files
    -exportmap use the token mapping from the pre-defined export
    file of the package being converted. The converter
    will look for the export file in the exportpath
    -applet <AID class_name>
    set the applet AID and the class that defines the
    install method for the applet
    -d <the root directory for output>
    -out [CAP] [EXP] [JCA]
    tell the Converter to output the CAP file,
    and/or the JCA file, and/or the export file
    -V, -version print the Converter version string
    -v, -verbose enable verbose output
    -help print out this message
    -nowarn instruct the Converter to not report warning messages
    -mask indicate this package is for mask, so restrictions on
    native methods are relaxed
    -debug enable generation of debugging information
    -nobanner suppress all standard output messages
    -noverify turn off verification. Verification is default
    *********************************************************May I know What is the correct command line to convert the class file and what must I do to before converting the class file?
    I saw some article saying we must use JDK1.3, is it a must?
    Your solution is highly appreciated.
    Thank you!

    Hi Ricardo,
    I saved the file below as WalletApp.opt in the directory of scr\com\sun\javacard\samples\WalletApp
    -out EXP JCA CAP
    -exportpath c:\javacard\java_card_kit-2_2\api_export_files
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2:0x1 WalletApp.WalletApp
    WalletApp 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2 1.0
    But I still have the problem below:
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sam
    ples\WalletApp\WalletApp.opt
    error: file scr\com\sun\javacard\samples\WalletApp\WalletApp.opt could not be fo
    und
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    May I know What's wrong with my command or file?
    Where can I download JDK because what I can find is J2SDK.
    Thank you!

  • Convert smart quotes and other high ascii characters to HTML

    I'd like to set up Dreamweaver CS4 Mac to automatically convert smart quotes and other high ASCII characters (m-dashes, accent marks, etc.) pasted from MS Word into HTML code. Dreamweaver 8 used to do this by default, but I can't find a way to set up a similar auto-conversion in CS 4.  Is this possible?  If not, it really should be a preference option. I code a lot of HTML emails and it is very time consuming to convert every curly quote and dash.
    Thanks,
    Robert
    Digital Arts

    I too am having a related problem with Dreamweaver CS5 (running under Windows XP), having just upgraded from CS4 (which works fine for me) this week.
    In my case, I like to convert to typographic quotes etc. in my text editor, where I can use macros I've written to speed the conversion process. So my preferred method is to key in typographic letters & symbols by hand (using ALT + ASCII key codes typed in on the numeric keypad) in my text editor, and then I copy and paste my *plain* ASCII text (no formatting other than line feeds & carriage returns) into DW's DESIGN view. DW displays my high-ASCII characters just fine in DESIGN view, and writes the proper HTML code for the character into the source code (which is where I mostly work in DW).
    I've been doing it this way for years (first with GoLive, and then with DW CS4) and never encountered any problems until this week, when I upgraded to DW CS5.
    But the problem I'm having may be somewhat different than what others have complained of here.
    In my case, some high-ASCII (above 128) characters convert to HTML just fine, while others do not.
    E.g., en and em dashes in my cut-and-paste text show as such in DESIGN mode, and the right entries
        &ndash;
        &mdash;
    turn up in the source code. Same is true for the ampersand
        &amp;
    and the copyright symbol
        &copy;
    and for such foreign letters as the e with acute accent (ALT+0233)
        &eacute;
    What does NOT display or code correctly are the typographic quotes. E.g., when I paste in (or special paste; it doesn't seem to make any difference which I use for this) text with typographic double quotes (ALT+0147 for open quote mark and ALT+0148 for close quote mark), which should appear in source code as
        &ldquo;[...]&rdquo;
    DW strips out the ASCII encoding, displaying the inch marks in DESIGN mode, and putting this
        &quot;[...]&quot;
    in my source code.
    The typographic apostrophe (ALT+0146) is treated differently still. The text I copy & paste into DW should appear as
        [...]&rsquo;[...]
    in the source code, but instead I get the foot mark (both in DESIGN and CODE views):
    I've tried adjusting the various DW settings for "encoding"
        MODIFY > PAGE PROPERTIES > TITLE/ENCODING > Encoding:
    and for fonts
        EDIT > PREFERENCES > FONTS
    but switching from "Unicode (UTF-8)" to "Western European" hasn't solved the problem (probably because in my case many of the higher ASCII characters convert just fine). So I don't think it's the encoding scheme I use that's the problem.
    Whatever the problem is, it's caused me enough headaches and time lost troubleshooting that I'm planning to revert to CS4 as soon as I post this.
    Deborah

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

Maybe you are looking for

  • HT4769 How to open a FULL HD video file with extension .mpeg2 in Final Cut Pro X ?

    I would like to know How to Import or Open a Video FULL HD in Final Cut Pro X or Final Cut Pro 7.0.3 . . .  I only can Open a HD video but not a FULL HD. May need some codec  ??? May some setup . . .  Whithout info , I have to RECODE a file to downgr

  • How can servlet return data as download file from browser ? !!! URGENT !!!

    My servlet query data from database and would like to return the data as text file. How can I return data to the browser as user click a file to download ? How can I set the file name ? (default name is the servlet name that I don't want it to be) Wh

  • Thunderbolt built-in cable is broken

    Hello, i've broken the thunderbolt built-in cable from my Thunderbolt Display (27). Thunderbolt outlet is distorted... The power one (macsafe) is right but the screen stay black. Can i change this integred cable ? Merci...

  • Getting an integer from an input box

    the title pretty much covers it, i basically need to assign an integer value given from and input box to a variable. i have search for example of this, but only found examples for returning strings, i tried to adapt it, but i couldnt figure it out. c

  • Export to Power Point

    Post Author: mmishkin CA Forum: Exporting Is there a way to export a crystal report and have it in powerpoint? I tried as a .pdf and then copy and pasting but it doesn't work. Any ideas?