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.

Similar Messages

  • Cannon MP830 can't use the scanner function after upgrading to Mavericks.

    I have an Cannon MP830 and now I can't use the scanner function after upgrading to Mavericks.  Can someone help?

    There is no ICA driver for this model so you won't be able to use Image Capture or Preview. But there is a TWAIN scanner driver and the supporting MP Navigator application available for 10.8 from Canon, so you could try installing these and see if you can scan again.

  • HT1461 can i use my OS X after installing windows 7 ??

    can i use my OS X after installing windows 7 ??

    Just to clarify, what Paul_31 and Barney-15E suggested are both temporary boot options. If you hold no key down, the Mac will continue to boot into Windows first.
    To make OS X the default, you need to change the startup drive;
    1) In the System Preferences > Startup Disk within OS X.
    2) From the Startup Disk icon in the Windows task bar. This appear once you've installed all of the Boot Camp drivers.
    3) Restart the Mac and hold down the Command+Option+P+R keys (known as zapping the PRAM). This will always reset the startup drive to the first bootable Mac OS partition it finds.
    Once OS X is the default startup drive, then you can use Paul_31's advice to temporarily choose Windows to boot to.

  • How can we use the same package in our report used by some other report

    how can we use the same package in our report used by some other report

    Hi,
    You just need to assign package while saving your report.
    No extra is required providing you are aware of package to be used.

  • Can I use the volume sliders after adding automation to tracks?

    After adding a whole bunch of automation to pretty much every track on my first real project on GarageBand, I started trying to mix, and it seems the volume sliders are all locked up on the tracks with automation. I really don't want to have to add a million more automation points just to mix the song properly, so if anyone has a solution, that would be greatly appreciated!
    Thanks!

    Can I use the volume sliders after adding automation to tracks?
    no
    if anyone has a solution
    you can select all the points by clicking in the header, and then drag them, though

  • Can I use the dbms_application_info package with ADF BC?

    Hi,
    I am executing a PL/SQL package from my ADF BC Application module and need to set some audit information within the PL/SQL. The package does some intensive background processing that would be time consuming to do in ADF. Can I use the dbms_application_info pakage to store session information for the user?
    I am not sure if the application module has a true database session with the database or is it pooled/shared with other users that may be logged on to the application?
    I want to use dbms_application_info.set_client_info and dbms_application_info.read_client_info.
    thanks,
    Brenden

    >
    If I created the new user what are the privileges shoud I grant him.You should grant EXPORT FULL DATABASE for exporting and IMPORT FULL DATABASE for importing.
    >
    I created one user testdba and granted DBA privileges as well full_export_database.
    after that I run catexp.sql with sys credential.
    While running the schema level export using testdba I am getting the below error:
    My Export scripts is
    exp testdba/password FILE=ALLEDW_edw2.dmp log=ALLEDW_edw2.log owner=ALLEDW grants=y indexes=y direct=y compress=y
    EXP-00008: ORACLE error 4068 encountered
    ORA-04068: existing state of packages has been discarded
    ORA-04063: view "TESTDBA.V_$OPTION" has errors
    ORA-06512: at "SYS.DBMS_AW", line 151
    ORA-06512: at "SYS.DBMS_AW_EXP", line 225
    ORA-06512: at line 1
    EXP-00083: The previous problem occurred when calling SYS.DBMS_AW_EXP.schema_inf
    o_exp
    EXP-00008: ORACLE error 980 encountered
    ORA-00980: synonym translation is no longer valid
    ORA-06512: at "SYS.DBMS_RULE_EXP_RULES", line 133
    ORA-06512: at line 1
    EXP-00083: The previous problem occurred when calling SYS.DBMS_RULE_EXP_RULES.sc
    hema_info_exp
    . exporting foreign function library names for user ALLEDW
    . exporting PUBLIC type synonymsDo You have any invalid objects in database?
    recompile them with $OARCLE_HOME/rdbms/admin/utlrp.sql

  • Downloaded mavericks for one mac can i use the same download to install on another mac

    I have downloaded for 12 hours initial installation on one mac for mavericks, and all installed successfully. Rather than download again for another mac, can I use the same download and copy on to the other mac..and if yes, where will I find it?

    All you need to do is go to System Preferences > App Store and uncheck the automatic install of updates box, then download the Mavericks installer, and copy to a flash drive.  You will need a flash drive of 8 G B or more since the installer is around 5.3 GB.  The installer will be in Finder > Applications.  You can then copy that flash drive installer to the Applications folders in all the Macs you have that are capable of running Mavericks, http://support.apple.com/kb/HT5842.
    When the installer runs, the last step in the installtion is for the installer to erase itself.  So makng a copy before the installer runs is essential if you want to avoid redownloading.
    Installing from the same installer does not cause problems for Macs on the same network.

  • How can I use the security package in JCOP41V2.2?

    Hi all, I'm a newbie in javacard programming. I'm trying to develop a project with RSA_signature. But I found, the exception NO_SUCH_ALGORITHM will be thrown out when I new an instance of KeyPair.
    My java file Temp_1.java following:
    package temp;
    import javacard.framework.Applet;
    import javacard.framework.ISO7816;
    import javacard.framework.ISOException;
    import javacard.framework.APDU;
    import javacard.security.*;
    * @author lujj
    public class Temp_1 extends Applet {
    KeyPair myKeyPair = null;
         public static void install(byte[] bArray, short bOffset, byte bLength) {
              // GP-compliant JavaCard applet registration
              new Temp_1().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
         public void process(APDU apdu) throws ISOException{
              // Good practice: Return 9000 on SELECT
              if (selectingApplet()) {
                   return;
              byte[] buf = apdu.getBuffer();
              if(buf[ISO7816.OFFSET_CLA] == (byte)0xEE)
                   try
                        myKeyPair = new KeyPair(KeyPair.ALG_RSA, KeyBuilder.LENGTH_RSA_1024);
                   catch(CryptoException e)
                        ISOException.throwIt((short)(0x6F00+e.getReason()));                    
                   return;
              switch (buf[ISO7816.OFFSET_INS]) {
              case (byte) 0x00:
                   break;
              default:
                   // good practice: If you don't know the INStruction, say so:
                   ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
    This package can be upload and the applet can be installed successfully.
    But if I send the apdu "EE 00 00 00 00" after selected the applet, "6F 03" will be returned.
    Is there anyone can help me? Thanks a lot.

    Thank you so much~
    Actually, it's only an applet for test. I cannot get the error code if I new the KeyPair in install function or Applet construct function. It will return "6A 80" when install the applet.
    And, I found that it support few algorithm. For example, it does not support ALG_DES_MAC4_ISO9797_M2,etc. Is there anything I can do if I want to use the algorithm? Shall I rewrite security package by myself?
    5555, security package is the standard package in JAVACARD API 2.1.1.

  • Satellite A300-1mz Can I use the recovery disks after a HDD upgrade?

    I'm upgrading the hard drive of my *toshiba a300-1mz*, but I'd be sure that I can use the *recovery disks* maked at the first boots for the s.o. (vista)
    I expect your support...
    thank you very much...

    > how can I be sure that the disk is properly recognized before I buy it???
    What do you mean exactly? Did you mean the HDD???
    The A300 supports and 2.5 SATA HDD and all 2.5 HDD should be recognized properly since the SATA HDD controller hasnt any limitations.
    Bye

  • If I don't have a previous version of an adobe product, but the only ones available of older editions are updates, can I use the update version to install the software?

    Dear Adobe,
    I've got older systems, ones that can't handle CS6, and a budget too low to purchase a new system and your software even with a student discount. Is there any way to use an update version? I wish that all of the "Creative Suite[s] products [would] continue to be available for sale via ESD on Adobe.com"(Adobe)*, or at least most of them. I understand the need to update, and that the industry is difficult with competitors, but I wish that all of your software versions were aimed towards 32 bit systems too. There are plenty that can keep up with the operating System updates, and I only wish that you would have kept at least CS5 on support instead of shutting it down. So, if you won't accept support of older products, can you help me with this? Or is this beyond any of the software contracts that is in the company's power? I appreciate any assistance in this matter.
    *CS6 FAQ

    You can only buy CS6 and CC. Otherwise you will have to find someone willing to part with his license and run a license transfer. Though, quite frankly this doesn't really make sense. You can buy cheap laptops withe a suitable 64bit version of Windows 7/ 8 for 300 Euros. The money saved could easily be invested in a CC student plan rather than possibly trying to find an overpriced older version with the risk of getting scammed... Otherwise you can use the trials of course, but that's about it.
    Mylenium

  • Can't access the recovery console after installing the Windows 7 RC

    Hi all,
    I recently installed the Windows 7 RC to give it a go but I've found that it kills my battery life so I decided to go back to vista, however when I press the blue button on start up to access the recovery console I just get a screen that asks me if I want to enter the BIOS or choose another boot location... I used the upgrade option in Windows 7 so I don't see how I could have deleted the partition with the recovery console...
    Is it posible for me to restore my tablet to it's factory settings?

    The install of Win 7 removes the TVT boot manager applet and sets the master boot record to Win 7 partition only.
    The Lenovo supported method of restoring your preload would be thru the use of Recovery CD's.
    You might be able to change the bootable partition from the win 7 partition to the recovery partition, thru some
    3rd party apps.
    Terry
    LESE
    Win 7 beta test

  • Can i use the Mac OS X Install DVD of MacBook Pro to iMAC?

    I am currently having problem withmy iMAC, i can't open the System Preferences, it says damaged or incomplete. I have tried the basic instructions on this forum, but no luck. I am now planning to reinstall the Snow Leopard. But i don't have the Installation DVD for this iMAC. Please help. Thanks.

    No. Installers that come with a computer originally are machine specific. They will not work on different hardware. You need the original discs that came with the computer or a retail version of OS X that installs a later version of OS X than was originally installed. In your case that sounds like you need to purchase a retail copy of Snow Leopard.

  • I can't use Premiere Pro CC after installing it

    i was purchasing and installed adobe premier pro cc su
    cessfully.after that when i tryed to reopen to use i couldn't able to do it.

    Hi mobly,
    Sorry for the inconvenience that you have been facing. Could you please try to launch the software in a new user admin account: http://support.apple.com/kb/PH4600 .
    Regards,
    Romit Sinha

  • Can't use the HP CD to install my printer to my new Surface Pro 2

    I need to install my HP Photosmart Plus B209a-m printer to a second computer, but it's a Surface Pro 2 that doesn't have an E drive or a USB port to connect an external drive.  My Surface Pro 2 runs on a Windows 8.1 32-bit OS.
    Could you please provide me with a link so I can install it from that?
    Terry Sullivan
    This question was solved.
    View Solution.

    Hello,
    Please download and run the HP Printer Install Wizard from www.hp.com/go/tools
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

  • I can not use the Chessproblems website after updating to Firefox 5

    After updating to Firefox 5 I can not have full access to the Chessproblems website, http://www.chessproblems.com/prob.php?id=648&next=1
    I had no problems before. Can you help with this?
    Thanks,
    Edward

    Solved after downloading last Java version

Maybe you are looking for