JCreator doesn't find the JAI packages

Hello Everyone!
I am new here and new to JAI. I read all posts i can find here and many another, too. I use JCreator and it doesn't "see" the javax.media.jai package. I installed the 1.3 version of JAI both jre and jdk, i set the environmental variables but it do't works. Originally i want to make TIF image from bufferedimage and the only solution that i find is JAI. If anyone knows any other solution to do this or to the package problem it will be welcome!
Regards,
Tamás Szabolics

You are right. "find" will find IPTC entries in caption, say, but not in category. I guess it's like EXIF, where it's only make, model, serial number, artist, and software.
- Pierre

Similar Messages

  • I have an issue with time machine, it doesn't find the Lacie external driver it use to use. it is the same drive that I usaly use for time machine back ups. It is corectly plugged. What can I do ?

    Hi,
    I'm trying to back up my macbook with time machine on the Lacie external driver I usualy use for this, but today my computer doesn't find the driver. I haven't done back up in 6 month.
    Today, the Lacie driver is pluged and running, but the computer just does'nt find it.
    what shall I do ?

    Some things to consider:
    Is the drive mounted, i.e., visible via Finder and/or on the Desktop?
    Is the drive still selected in System Preferences, Time Machine? If not, use the "Select Disk" button.
    Is Time Machine still turned on (System Preferences, Time Machine)?
    Can you see the drive (and mount it) using Disk Utility (in your Utilities folder)?
    charlie

  • When i try to update it shows, "the path blah blah blah cannot be found. verify you have access to this location and try again, or try to find the reinstall package "itunes.msi"...?

    "The path cannot be found. Verify that you have access to this location and try again, or try to find the installation package "itunes.msi" in a folder from which you can install the product itunes." this is all I see whe i tried to update or uninstall itunes. Why?

    A search of the forums or google would reveal many other threads with the same issue, troubleshooting steps, and resolutions.
    Try helping yourself before asking others to help you.

  • HT4889 Migration Assistant to update my new Mountain Lion iMac from an external USB hard disk drive, it is constantly saying that it is "looking for other computers". It doesn't find the external drive. Why is it looking for other computers?

    I'm trying to use Migration Assistant to update my new Mountain Lion iMac from an external USB hard disk drive. I told it to look for a drive, yet it is constantly saying that it is "looking for other computers". It doesn't find the external drive ... it just endlessly looks for other computers. Why is it looking for other computers at all, when I told it not to?

    Wow, the wording in Migration Assistant is misleading. I've never used it before, so I thought I would try to copy my files from the external drive ... my old iMac died, but I managed to get everything I need off it, using the 'cp' command in single-user mode. So I guess I'll just have to manually copy the files from the external drive to the new machine. I was hoping that Migration Assistant might help somehow, but obviously not.
    Thanks for the quick reply!

  • N82: Nokia Software Update doesn't find the phone

    Hello, I am trying to update the firmware of my Nokia N82, but I get an error message from Nokia Software Updater saying that it doesn't find the phone. I find that strange as Nokia PC Suite indeed finds the phone. The icon on the taskbar says that "AndersMobil is connected".
    I've noticed that if I let Nokia PC Suite run at the same time as Nokia Software Updater, this icon shows that the phone is being connected and disconnected several times while Nokia Software Updater tries to find the phone, something that might indicate that the two programs cannot be run at the same time? I tried to run Nokia Software Update alone, but still the program doesn't find the phone.
    In Windows Hardware Manager (or Units manager, not sure of the english translation) of Windows XP, "Nokia GSM Phone USB Modem" gives the following error message: "The unit is not working as it should as Windows cannot load the necessary drivers for this unit (Code 31)." Under "Portable Devices" in Hardware Manager/(or Units manager?) the error message "This unit cannot start. (Code 10)" appears for the unit "AndersMobil".
    I followed the guidelines on the internet reinstalling Nokia PC Suite and Nokia Software Updater, removing and reinstalling the drivers, but Nokia Software Update still doesn't find the phone, and the same error messages appears in Hardware/Units manager every time.
    What do I do?
    Regards,
    Anders
    By the way, I sent an e-mail to Nokia support about this but they still haven't answered although it's been a long time since.
    Moderator note: translation removed.
    Message Edited by sphere_s on 18-Feb-2008 06:53 AM

    See also my post "N82: Remove memory card and click OK" at /discussions/board/message?board.id=smartphones&me​ssage.id=79797#M79797
    I don't know if that problem might be interconnected with the other in some way or not.
    Kind regards,
    Anders

  • My Itunes account tells me i need to update it to version 10.6.1, but when I click download and the computer (mac 2007) goes to the "checking for softwares" page it doesn't find the update?

    my Itunes account tells me i need to update it to version 10.6.1, but when I click download and the computer (mac 2007) goes to the "checking for softwares" page it doesn't find the update? Help me please, what do I do?

    Try updating to 10.6.3.25.
    A .dmg installer for iTunes version 10.6.3.25 for Mac OS can be found at the following download page on the Apple website:
    iTunes 10.6.3

  • Can't find the servlets package when compiling

    Hi,
    My problem is that when I compiling my servlets so can't the compiler find the two packages javax.servlet and javax.servlet.http.
    Why?
    Please can someone help me with this problem!
    HelloServlet.java:2: package javax.servlet does not exist
    import javax.servlet.*;
    ^
    HelloServlet.java:3: package javax.servlet.http does not exist
    import javax.servlet.http.*;

    OK,
    It seems like it will work with your proposal to. But now I have a new problem that you maybe can solve for me. That is when I try to test the following (from the book More Servlets and JavaServer Pages):
    Test 3: A Servlet That Uses Packages and Utilities
    The final servlet you should test to verify the configuration of your server and development environment is one that uses both packages and utility classes. HelloServlet3.java is a servlet in the moreservlets package that uses the ServletUtilities class to simplify the generation of the DOCTYPE (specifies the HTML version--useful when using HTML validators) and HEAD (specifies the title) portions of the HTML page. Those two parts of the page are useful (technically required, in fact), but are tedious to generate with servlet println statements.
    Since both the servlet and the utility class are in the moreservlets package, they should go in the moreservlets directory. If you get compilation errors, go back and check your CLASSPATH settings--you most likely forgot to include the top-level development directory. I've said it before, but I'll say it again: your CLASSPATH must include the top-level directory of your package hierarchy before you can compile a packaged class that makes use of another class from the same package. This requirement is not particular to servlets; it is the way packages work on the Java platform in general. Nevertheless, many servlet developers are unaware of this fact, and it is one of the (perhaps the) most common errors beginning developers encounter.
    Once you compile HelloServlet3.java (which will automatically cause ServletUtilities.java to be compiled), put HelloServlet3.class and ServletUtilities.class in install_dir/webapps/ROOT/WEB-INF/classes/moreservlets. Then, access the servlet with the URL http://localhost/servlet/moreservlets.HelloServlet3. You should get a simple HTML page that says "Hello (3)".
    This works not for me! I will get this message when I try to compile HelloServlet3.java:
    C:\Apache-Tomcat-4.1.27\ServletsDevel>javac HelloServlet3.java
    HelloServlet3.java:23: cannot resolve symbol
    symbol : variable ServletUtilities
    location: class moreservlets.HelloServlet3
    out.println(ServletUtilities.headWithTitle(title) +
    ^
    1 error
    Do you know what the problem is?

  • Where can I find the enhancement package version in my sap system

    Hi everybody,
        Can anyone tell me where can I find the enhancement package version information in my sap system?
    Thanks

    Hi Mike
         Thank you for your reply. But i can only find SAP BASIS7.1 under the Enterprise Services Repository in Tcode SPROXY.So could you tell where can I open SCV?
    Thanks

  • Where or how do I find the installation package containing "iTunes.msi"?

    I have iTunes 10.5.3.3 installed on my computer with a Windows XP operating system.  I have tried to download the new itunes 10.6 but continually get a pop up which states "The feature you are trying to use is on a network resource that is currently unavailable.  Enter an alternate path to a folder containing the installation package "iTunes.msi".  I have tried  and failed to find this package. 
    I have also tried the support page suggestion by uninstalling the old itunes and then install the new one.  This did not work.  Another pop up also tells me that I cannot remove the old (10.5.3.3) itunes...because..." the feature I am trying to use is on a network resource that is currently unavailable". I am caught in a loop.  It appears that I need to locate the "iTunes.msi" installation package in order to be able to uninstall the old and replace with the new iTunes upgrade.
    Where or how do I find the installation package containing "iTunes.msi"?  Secondly, when I find it is there anything special I need to do or be aware of?

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • My old eMac doesn´t find the hardrive

    After restart my eMac it appeared a folder with a question mark. I think my eMac doesn´t find the hardrive. I have tried to reinstall the system but of course it happens the same, it doesn´t find the disc where to install.
    I restarted pressing ALT and then appears two arrows but nothing happens when I click on them.
    Please, what can I do?
    Regards.

    It sounds to me like your hard drive has failed.
    you'll need to get it repaired. They may or may not
    be able to recover your data... I hope you have a
    backup system.
    Sorry mate.
    Yes, fortunately I have a backup of everything and I have a iMac Intel Duo Core... what´s strange is that this has happen to me four times and the only way of recover the eMac was to format the hardrive. I think this time I going to change it for a new one.

  • How to find the exact package that I need?

    How can I find the exact package that I need, for example, in Ubuntu, I can add launcher in System -> Preferences -> Main Menu, but in Arch, I can not find this Main Menu, I know I need to install something, but don't know where to go?

    Ghost1227 wrote:depends... where are you now?
    LOL
    pacman -Ss <package-name>
    would help you out. You can also put in part of the name and it will return all the matches. As for a GUI -- you don't get that by default in Arch.
    There is a GUI wrapper for pacman called shaman, but iirc, it uses kdelibs and integrates well with KDE. It looks like you are using Gnome, but you can use shaman in Gnome too.

  • I can't uninstall iTunes on my computer...it keeps telling me it can't find the installer package.  Any suggestions?

    I can't uninstall iTunes on my computer...it keeps telling me it can't find the installer package.  Any suggestions?  I have tried to delete all the iTunes components already, it didn't work.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • When i want to download the test version of CC, creative cloud doesn't find the file. Always search

    When i want to download the test version of CC, creative cloud doesn't find the file. Always searching, what do i do?

    Hi clemdef,
    Change your browser and try again. Please refer the kb: http://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html for download issues.
    You may even try the direct download: http://prodesigntools.com/adobe-cc-direct-download-links.html .
    Kindly follow the very important instructions before download.
    Regards,
    Romit Sinha

  • I can't pair my Bluetooth headphones, the iPhone 5 doesn't find the device. Can anyone help please?

    I cant pair my Bluetooth headphones to my IPhone 5 the phone doesn't find thee vice. Can anyone help please?

    Forget the pairing on iPhone and if possible the headphones ( see their  user guide ) and start the pairing process again from "new"

  • Can't use the jai package after installing it

    when i downloaded the package it was an exe file that extracts the package and instals it.
    the default path for installation was c:/jbuilderx/jdk1.4.1 so i kept it like that and i got 3 files,
    jai_core ( i think this is the main package ) in the path C:\JBuilderX\jdk1.4\jre\lib\ext ,
    jai_codec in the same path ,
    mlibwrapper_jai in the same path ,
    but in my project when i write 'import' i can't find it anywhere so plz tell me what to do
    thanx in advance.

    take the JAI files and put them in the corresponding folders of your current Java installation, there isn't any classpath to them, so you cannot see them.

Maybe you are looking for