Where is the Java icon

Hello,
once upon the time - it was at Java 1.4 - the Java icon for windows could be found in the subdirectory \jre\javaws\JavaCup.ico.
Where can that - or a similar - Java icon be found in Java 5 and 6 installations (or elsewhere)?
Thomas Wiedmann

This is the result of a find in the Java 1.5.0 directory on a Linux system:
# find . -name "*png" -print
./demo/jfc/Java2D/src/images/boat.png
./demo/jfc/Java2D/src/images/duke.png
./demo/jfc/Java2D/src/images/jumptojavastrip.png
./demo/jfc/Java2D/src/images/java_logo.png
./demo/plugin/jfc/Java2D/src/images/boat.png
./demo/plugin/jfc/Java2D/src/images/duke.png
./demo/plugin/jfc/Java2D/src/images/jumptojavastrip.png
./demo/plugin/jfc/Java2D/src/images/java_logo.png
./jre/lib/images/icons/sun-java_LowContrast.png
./jre/lib/images/icons/sun-java.png
./jre/lib/images/icons/sun-java_HighContrastInverse.png
./jre/lib/images/icons/sun-java_HighContrast.png
./jre/plugin/desktop/sun_java.png
I suggest you run a similar find on your Java directory and check to see if any of those images (change png to gif and jpg to possibly get more images) suits your needs.
Disclaimer: please be aware that the Java cup logo is a Sun trademark. You may not be allowed to use it.

Similar Messages

  • Where has the 'help' icon gone on the IO7 update?

    where is the 'help' icon on the new IOS7 and how does one disable the annoying passcode necessity everytime you open the flap

    Settings>General>Passcode Lock>Off (you have to enter passcode before you can turn it off)

  • HT202190 Where is the "Settings icon in the lower right corner of the Home Sharing window."?

    Where is the "Settings icon in the lower right corner of the Home Sharing window."? Anybody else doesn't find it? Is it because of I have the most updated version of iTunes? Have things changed?

    What I had to do is send to my iPhone from my Mac, respond to the resulting alert, choose the action button while the destination was highlighted, and then save the address to favorites.

  • Where is the App icon for HD 1080p Video? From the online photos it should be separate from the camera App.

    Where is the App icon for HD 1080p Video? From the online photos it should be separate from the camera App.
    It's supposed to have a blue background with 1080p in white, while inside there is a white camera with the letters HD in blue.
    I cannot find this App icon. Where is it located? It was supposed to be preinstalled.
    Thanks.

    There is no app.
    It is the camera.  Just take video with the camera.
    iPhone User Guide (For iOS 5.1 Software)

  • Where is the iCloud icon? I have a new ipad and although in settings I have the icon and have set music, mail etc to be stored on the cloud I do not have the icon on my home page or on the safari tool bar

    Where is the iCloud icon ? I have the iCloud settings set to on for music, mail etc but the icon is not on my safari tool bar nor is the icon present on my home screen

    There is no iCloud app or icon on your phone.  iCloud is enabled and configured in your settings, but you access your iCloud data through the apps you are syncing with iCloud.  iCloud contacts are accessed through the Contacts app on your phone, Mail through the Mail app, Reminders through the Reminders app, etc.
    You can also access some of this data on icloud.com from a computer.  You can't, however, access icloud.com from your phone.

  • Where is the Safari icon located.

    I have found a bunch of custom icons for OSX on line and have started using them. I replaced the trash can empty and full, some of the icons in the finder sidebar etc. through system/library/coreservices. I backed up to original folders and corrected disk permissions afterward. Everything is working fine. But I can't find all of the icons I would like to replace.
    Where is the safari icon for example? I looked in dock, finder and coretypes bundle. I can't seem to locate it. Can anyone help?

    Hi Jason,
    When it comes to changing icons in the system or in applications, the possibility of creating some system problem jumps. As an alternative, I use CandyBar, which simplifies this process immensely.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer, Airport Express (2 units)

  • Where is the security icon?

    Where is the security icon that tells you a site is secure on the new Foxfire?

    The old padlock icon was removed, I am not sure but I wondered if it had become too easy to spoof. Now''' use the site identity button''', note it changes colour, and if you click it on a secure site it provides move information and displays the padlock.
    See [[site identity button]] <-- clickable link --
    There are also add-ons that can restore a similar padlock security icon feature.

  • TS4479 where is the nhl icon on apple tv?  seems to be missing

    where is the nhl icon on apple tv?  seems to be missing

    Ok so that's not the issue as both have access. Make sure the location is set properly in settings. Try rebooting device and router.

  • HT4356 Where is the action icon????  Trying to get printer to work

    Where is the action icon???  Trying to print

    Make sure your printer is AirPrint enabled.
    http://support.apple.com/kb/ht4356

  • IPod touch 5th generation...where is the contacts icon

    5th generation ipod touch Where is the contacts icon?

    It could be in the Utilities folder. Just use the search feature to find it.

  • Where does the java classes go?

    I normally use IntelliJ which automatically puts the java class and the jsp where they are meant to go.
    Can some help me.
    Can someone please tell me where to put the java class, i have put the jsp pages in the webapps\ROOT but where does the java classes go?
    Edited by: Tinkerbelle on Jul 24, 2008 1:46 AM

    Tinkerbelle wrote:
    sorry being stupid i do that sorry,
    If i change the class to type (as someone said in a previous post)That would only work if you already put the bean in the session scope.
    Did you try what PaulOckford wrote?
    >
    i get this error:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 6 in the generated java file
    Only a type can be imported. com.database.contactDB resolves to a packageDo you have a package structure that looks like this:
    com
    com/database/ <-- This is where contactDB.class is located
    com/database/contactDB/
    Because that is what the compiler is saying. Though it may be thrown off by case (see below)
    P.S. If you use the jsp:useBean you do not need the import statement which appears to be where the error occurs. (One of the things that makes JSPs so hard to debug is the fact that the error line in the generated java file as referenced above is never the same as the line in the JSP file).
    >
    An error occurred at line: 3 in the jsp file: /login.jsp
    database.contactDB cannot be resolved to a type
    1: <%@ page import="com.database.contactDB" %>
    2:
    3: <jsp:useBean id='db'
    4: scope='session'
    5: type='database.contactDB'/>
    6: <html>
    And to be ultra clear - you did compile contactDB from a .java file to a .class file, and the class is called contactDB and not ContactDB correct? The class name is case sensitive and should be the exact same case in the useBean and import statements as in the real class name.
    >
    An error occurred at line: 3 in the jsp file: /login.jsp
    database.contactDB cannot be resolved to a type
    1: <%@ page import="com.database.contactDB" %>
    2:
    3: <jsp:useBean id='db'
    4: scope='session'
    5: type='database.contactDB'/>
    6: <html>
    Stacktrace:
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:93)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)
         org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:435)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:298)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:277)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:265)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:564)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:302)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.26 logs.
    Apache Tomcat/5.5.26Edited by: stevejluke on Jul 24, 2008 7:33 AM
    Fixed compile from .class file to a .java file to compile from a .java file to .class file

  • I am trying to imessage from my mac because my phone is broken, where is the message icon on my mac?

    i am trying to imessage from my mac because my phone is broken, where is the message icon on my mac?

    The easiest way to find it would be to type "messages" in spotlight.  Spotlight is the magnifying glass on you menu bar at the top right of the screen.

  • Where is the java root in BI EE ?

    hello every body.
    I have changed the java version and install java 5.0 update 10, because I had problems with the update 15 one.
    I want to make the change work with BI EE, but I forgot the file system of BI EE where the root of java is placed !!!
    Can any one remember me ?
    thanks

    we can say the root in the file : server.xml
    Message was edited by:
    user642052

  • Where are the toolbar icons located on a mac

    I want to find out where the toolbar icons are found in the OSX.
    The ones that  I am refereing to are those found in finder windows at the top, that show things like the quickview icon etc.
    I want to be able to make my own for scripts that I want to place in the bar, so if anyone knows where I can download a template etc I would be very grateful
    Many Thanks
    Matt

    You create an alias in the top bar of the Finder window simply by dragging the source file onto the middle area of the bar. What you'll get for a script file I'm not sure, but if it's not to your taste it should be possible to change the icon of the source file in the 'get info' window and then re-drag it to the toolbar.
    To remove items from there, you need to hold down the command key (⌘) while dragging to the desktop (same goes for sidebar).

  • Confuse..where are the java files(bean) related to JSP in Portal??

    Hi..
    Can anybody plz help me..
    I already deploy the new JPDK Jan 2003.
    It's works fine in the Portal.
    Just, i don't understand, where they put the java files(bean) related?
    For example..the Lottery (lotto.jsp)
    it called this bean..
    "<jsp:usebean id = "picker" class = "oracle.portal.sample.devguide.lottery.LottoPicker" scope = "page" />"
    but, when i searched in the Server, i cannot find this LottoPicker.java.....
    Pls help me, it is urgent..

    Hi,
    All the bean files are in samplev2.jar at %OC4J_HOME%/j2ee/home/applications/jpdk/jpdk/WEB-INF/lib. If you extract the zip you will see all the class files for samples in JPDK.
    btw, as per J2EE container specification, the default location for any java class file (i.e. '.class' files) is WEB-INF/lib (packaged as a jar) or inside WEB-INF/classes as individial class files (with their complete package structure)
    Regards,
    Abhinav

Maybe you are looking for

  • Sound card is not detected under Windows 8

    Hi there, I bought an Asus Xonar DGX PCIe soundcard. When inserted it is not detected by the system; it is like it doen not exist. I have a new Dell Inspiron 660 pc with 3mHz I5 processor, 8Gb memory, 4 extension slots, one full lengthand 3 PCIe, Nvi

  • My flash drive works on a Mac mini, but not on a MacBook Pro. How do I get it to work?

    Also, when I plug my phone into the computer using the USB drive, the computer does not recognize it. I have not tried my phone on the Mac Mini. They have both worked before on my MBP. What's the problem?

  • Installing SAP R/3 with SQL Server 2005..

    Hi, Microsoft is about to release "SQL 2005" in Nov05. Has anybody in here thought of installing/upgrading SAP on MS-SQL's latest version of the database server. On doing some research on the net I noticed that Microsoft has already upgraded their SA

  • Plz help me with faxing through pc!cancelletion problem!

    Hello!I have a damned problem!Well my 127fn works perfect!but i cant send fax  through pc! i use windows 7 64bit and downloaded the latest drivers!i can send fax,print,scan manually from my fax.I can print,scan from pc but i cant send fax!i use send

  • HT2978 Using genius for apps.

    When I turn on genius for apps, all I get is a blank  screen. How do I get the recommendations?