Where can i find package com.sun.awt.svg.*??

where can i find package com.sun.awt.svg.*??
urgent!!! please help me!
thanks in advance!!!

Perhaps you might find some useful information here;-
http://forum.java.sun.com/thread.jsp?forum=54&thread=427144&tstart=15&trange=15
(pillock)

Similar Messages

  • URGENT!!!! help me!Where I can get package com.sun.awt.svg.*

    Hello,everybody!
    I want to know Where I can get package com.sun.awt.svg.* ??

    Requirements
    JDK 1.3 Software -
    To use the Graphics2D SVG Generator, you need to have installed the Java 2 Software Developer's Kit (SDK). You can obtain the Java 2 SDK from the Sun Java 2 web site (http://java.sun.com/j2se/).
    The Graphics2D SVG Generator software was tested with version 1.3, so you should use the same version or a newer one.
    DOM Implementation -
    A DOM level 1 implementation is needed to use the Graphics2D SVG Generator. You can obtain a Java language DOM implementation from the following:
    Apache Xerces (http://xml.apache.org/xerces-j/index.html)
    Sun Microsystem's Project X
    (http://developer.java.sun.com/developer/products/xml)
    You also need to put the corresponding jar files in the classpath. The following table shows commands for doing this.
    Operating System DOM Implementation Command
    Windows 98 Xerces set classpath=%classpath%;
    xercesinstalldir\xerces.jar
    Windows 98 Project X set classpath=%classpath%;
    projectxinstalldir\xml.jar
    UNIX Xerces setenv CLASSPATH ${CLASSPATH}:
    xercesInstallDir/xerces.jar
    UNIX Project X setenv CLASSPATH ${CLASSPATH}:
    projectxinstalldir/xml.jar
    SVG Viewer
    To view the generated SVG files, you need to have an SVG viewer. You can find a list of available SVG viewers at the W3C SVG web site (http://www.w3.org/Graphics/SVG/SVG-Implementations).
    top of the page
    Installing the Graphics2D SVG Generator Software
    IMPORTANT:
    Before installing the software, make sure you agree to the license terms.
    To install the software, perform the following steps:
    Step 1: Uncompress the distribution file in the desired installation directory. Use these commands (from the command line):
    > cd installDir
    > jar xf j2d2svg.zip
    The j2d2svg.jar file expands into a directory (j2d2svg) that contains the following:
    README.html (this file) -- Provides important information about installing and using the Graphics2D SVG Generator.
    svggraphic_license.html -- License agreement.
    svggen.jar -- A jar (java archive) file that contains the SVGGraphics2D classes.
    glf.jar -- A jar file that contains the Graphic Layers Framework classes.
    svggenDoc.jar -- A jar file that contains the software's API documentation in HTML.
    HelloSVG.java -- Example file.
    HelloManipulatedSVG.java -- Example file.
    Step 2: Add svggen.jar to the classpath.
    On Windows, use this command:
    - set classpath=%classpath%;<j2d2svginstalldir>\svggen.jar
    On UNIX, use this command:
    - setenv CLASSPATH=${CLASSPATH}:j2d2svginstalldir/svggen.jar
    To use the Graphic Layer Framework conversion utility (i.e., to use the com.sun.awt.svg.util.GlfSVGPrettyPrint), you will also need to add the glf.jar file to your classpath. However, this is not required to run the examples.

  • Where I can get package com.sun.awt.svg.*

    Hi:
    Anyone know Where I can get package com.sun.awt.svg.* ??
    My Email is :[email protected]
    thank you !

    I do not know,
    but if you need to deal with SVG take a look at Batik at xml.apache.org,
    http://xml.apache.org/batik/index.html

  • HELP: where is "com.sun.awt.svg"?

    Hi,
    there is sample code "HelloSVGWorld.java" for SVG generator at
    http://wwws.sun.com/software/xml/developers/svg/java2d-api/
    can anyone kindly tell me where the package com.sun.awt.svg is. Many thanks.

    I did download batik but there are about 20 jar files and anyone knows if "com.sun.awt.svg" is contained in one of these jar files. Thanks a lot.

  • Where can i find package

    hi..
    i was wondering where can i find a package called ij????
    thanxxx

    Depends on what ij is.
    I know it is part of the ImageJ image processing program, you can get the source here.
    Otherwise, I haven't a clue.

  • JNDI: Can't find Class com.sun.jndi.nis.NISCtxFactory

    Hi
    I searched this forum for similar problems .. and I also found some, but this questions were either not be answered or not detailed enough.
    Now to my question. I've got a Java File that I imported to Oracle (I use it from PL/SQL). This Java File contains following code.
    static Properties = System.getProperties();
    env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.nis.NISCtxFactory");
    env.put(Context.PROVIDER_URL, "nis://disney/geo.unizh.ch");
    Context ctx = new InitialContext(env);
    And if I run it from oracle(PL/SQL) I get the error below.
    javax.naming.NoInitialContextException: Cannot instantiate class: com.sun.jndi.nis.NISCtxFactory. Root exception is java.lang.ClassNotFoundException: com/sun/jndi/nis/NISCtxFactory
    at java.lang.Class.forName0(Class.java)
    at java.lang.Class.forName(Class.java)
    at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.java)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java)
    at javax.naming.InitialContext.init(InitialContext.java)
    at javax.naming.InitialContext.<init>(InitialContext.java)
    at GIUZContext.getCtx(GIUZContext:42)
    at CheckPwd.check(CheckPwd:18)
    The nis.jar I imported with the loadjava, so actuallay should it be in the database. But why it cant find this class (NISCtxFactory)!
    I get no error if I use this code ->
    NISCtxFactory test = new NISCtxFactory();
    System.out.println(test);
    It would be very nice if you could give me some clues. TNX!!
    Oracle Version 8.1.7.
    Cyrill

    Hi Cyrill,
    I don't know what other postings you have read, and I also don't
    know why they were insufficient for you, so excuse me if I repeat
    things you already know.
    As far as I know, the error message you are getting is most probably
    due to one of the following three causes:
    1. The class is not loaded into the database.
    2. The class is loaded but is not "valid".
    3. You don't have permission to access the class.
    To the best of my memory, there have been several posts to either
    this forum or the "Products > Database > JVM" forum
    http://forums.oracle.com/forums/forum.jsp?id=424322
    that (in my opinion) sufficiently explain how to resolve the problem
    for each of the three causes listed above.
    Personally, I believe that the Oracle documentation sufficiently
    explains how to resolve the above three issues, and I have posted
    the URLs for the relevant Oracle documentation several times already.
    I am guessing that you are trying to "talk" to an EJB (probably deployed
    in SUN's application server) from a java stored procedure in the Oracle
    database. If that is the case, then that question has been discussed
    many times in this forum. Perhaps you can say why those discussions
    were not sufficiently helpful for you.
    Hope this helps.
    Good Luck,
    Avi.

  • JFrame Transperency  com.sun.awt package

    Hi,
    In my application i am having the requirement of tranperent window. I searched lot in google and i find transperent JFrame is possible. For making the JFrame transperent the **com.sun.awt** package is needed.
    But this package is unavailable in JDK1.6. I am also using JDK 1.6 version.
    If anyone knows the JDK containning this package. Please let me know that link(JDK containing com.sun.awt package).

    Don�t know if it help, but I found that 'org.apache.batik.svggen.SVGGraphics2D' substitutes 'com.sun.awt.svg.*'
    Also I found some info about com.sun.awt in here:
    http://java.sun.com/products/personaljava/spec-1-1/pJavaSpec.html

  • Com.sun.awt

    Hi all,
    From where I can find the package com.sun.awt
    I've search the web but unable to find a location to download it. Anyone of you have a link to download it.
    Thanks.

    Don�t know if it help, but I found that 'org.apache.batik.svggen.SVGGraphics2D' substitutes 'com.sun.awt.svg.*'
    Also I found some info about com.sun.awt in here:
    http://java.sun.com/products/personaljava/spec-1-1/pJavaSpec.html

  • Where to find the doc of package "com.sun.media.util"

    In the jmf.jar,it also has the com.sun.media package,but jmf20.pdf doc not include the comment,how to find the document of package com.sun.meida?

    why nobody answer the easy question for me?

  • How can I find the package com.sun.enterprise.naming?

    Where does the following package come from? From which jar file?
    com.sun.enterprise.naming
    I am worling on j2sdk 1.4.2.10 and SUN Application Server 8.1.02.

    You should not use the classes in the package com.sun.xml... directly. Use the XML API (included in the Java SDK since version 1.4); look at the javax.xml package.
    Jesper

  • Where can i find Java.media package

    Hi All
    Someone please advise me where can i find the java.media package. Any help will be welcomed.
    Thanks
    Shan

    It seems that java.media was changed to javax.media from JMF 1.0.2 Apperently the source code that you have is old. Check out the following page:
    http://java.sun.com/products/java-media/jmf/1.0/guide/JavaMediaFrameP.doc.html
    Ahmed

  • Where can i find the package of javax.servlet?

    i have installed the J2EE SDK,and Lomboz.i want use Eclipse.but when i import the package of javax.servlet.it said there is no such a package exist .Where can i find it?and how can i use it in Eclipse~Help me~~

    You can download it here :
    http://java.sun.com/products/servlet/download.html
    FeedFeeds : Read news a new way!
    http://www.feedfeeds.com

  • Where can I find the implementation guide for srm 5.0 busines package

    Where can I find the implementation guide for srm 5.0 busines package

    Hi Vishal,
    You can find the documentation at the following link:
    http://help.sap.com/saphelp_srm50/helpdata/en/dd/458a6764e84ff6b5e809b51c930678/frameset.htm
    Else you could browse SdN - Download - Portal content portfolio - search with the business package name.
    If you have permissions, u can download the package. Sometimes you may face problem with downloading business package and documentation using IE. You may then need to try with mozilla.
    Hope this helps. If so you could award points.
    Cheers,
    Chetan

  • SIP      Where can I find (JSR 180 Package - the actual jar files)

    Hey guys I have been looking for this for hours I'm up to my ears in lovely documentation and samples where can I find the actual jar file of an implementation of the SIP API for J2ME.
    Thank you in advnace Brian

    jjsomer,
    Unfortunately, we offer no such installer package. The closest thing to
    what you desire is the LabVIEW Device Drivers CD which comes with
    LabVIEW. It will install all hardware drivers. Another option would be
    to write a batch file to run the installers in silent mode. Searching
    ni.com for "silent install" should yeild several results for installing
    our software products and device drivers without user interaction.
    Good luck!
    Ryan Verret
    Product Marketing Engineer
    Signal Generators
    National Instruments

  • Where can I find the quick install package for EBS extensions for Endeca?

    I want to install EBS extension for Oracle Endeca 12.1.3.4.
    Where can I find the quick install package in the edelivery.oracle.com site? Which Product Pack should I select in the site?

    If you're getting a "This update requires Mac OS X version 10.7" message, than you have the updater and not the full installer. Go to your Purchases section of the Mac App Store and you should see the full version there. But it may be 10.7.5, though in my system is shows as being from 2011 which would appear to be the original version.
    As to Mountain Lion, that's supported only on the Early 2008 Mac Pro or newer.
    Regards.

Maybe you are looking for

  • Apple remote no longer works?!

    Hi everyone, I recently replaced the 120 GB hard drive with a 200 GB hard drive, clean install (no disk imaging or time machine). I did it myself having seen it been done before and relatively knowledgeable about computer hardware. I grounded myself

  • How can the servlet engine create objects of interfaces?help

    hello, I have this basic fundamental query...when using servlets i noticed that so many methods in the HttpServlet class take as arguments objects of the type "Interface"..where as basic principle in java is u cant instantiate interfaces...interfaces

  • Is undeploying "dangerous"?

    Hi @all, I want to undeploy two files (SAPXIAFC12P,SAPXICONS12) because a have a version conflict. Is this action dangerous for my sap-system? Thanks for your help. Regards. Stefan Zeller

  • IPhone announcment from AT&T

    AT&T announced today that they will start selling the iphone 3G contract free for $600-$700 depending on the model. You're still tied to AT&T as a carrier, and as of right now, the offer is limited to current AT&T customers. You also still have to si

  • Photo Editor WILL NOT START AFTER LOGIN

    I have purchase three different licenses of elements 12 in an effort to do my job. I have spent the last 4 hours on the phone with an illiterate representative of your business and so-called "specialist" to help me get this ******** working. Here is