Where put the JAR File jakarta-regexp-1.3.jar ?

I'download jakarta-regexp-1.3.jar file from jakarta-apach site for validate a email adress..
But i did not find any doc to telle me where put this file..
I put it in the jre subdirectory of my sdk directory but the javac compiler
do not recognize this part of my code import org.apache.regexp.* ..I try the lib directory of the tomcat and it was same..
Where should i put this jar file ..
By the way i 'm coding on linux for jakarta-tomcat server..
Could some body help me ?

DON'T CROSS POST:
http://forum.java.sun.com/thread.jsp?thread=461653&foru
=33&message=2116135
http://forum.java.sun.com/thread.jsp?thread=461654&foru
=45&message=2115945
http://forum.java.sun.com/thread.jsp?thread=461653&foru
=33&message=2115943
http://forum.java.sun.com/thread.jsp?thread=461652&foru
=1&message=2115941Ooops, didn't see it, ehmmmz
I re-draw my answer, first learn some posting etiquette, then people might help.

Similar Messages

  • Where do I put the .jar file for the database connection?

    I am trying to connect to an Oracle 11g database. I see under the coldfusion settings summary that the java version is 1.7.0_55. So I downloaded the ojdbc7.jar file from Abode.com. Now the question is where do I put it so that coldfusion can access it?
    Of course I need to set up the database connection (which I still don't have the connection string for), but I still need to know where to put the ojdbc.jar file.
    Thanks.

    jasonwryan wrote:What does the man page say?
           The  program  has builtin defaults and temperature thresholds but users
           can   specify   their   own    settings    in    configuration    files
           /etc/default/i8kmon  and  ~/.i8kmon.   The daemon defines 4 states with
           different fan speeds ({0 0}, {1 0}, {1 1}, {2 2}) and  for  each  state
           are  defined  the temperature thresholds which cause the switching to a
           higher or lower  state.  Furthermore  each  state  can  have  different
           thresholds  for operation on ac power or battery.  For example the fol‐
           lowing configuration:
    I've put the following file in /etc/default/i8kmon:
    # Run as daemon, override with --daemon option
    set config(daemon) 0
    # Automatic fan control, override with --auto option
    set config(auto) 1
    # Report status on stdout, override with --verbose option
    set config(verbose) 1
    # Status check timeout (seconds), override with --timeout option
    set config(timeout) 1
    # Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
    set config(0) {{-1 0} -1 50 -1 50
    set config(1) {{-1 1} 50 70 50 70}
    set config(3) {{-1 2} 70 128 70 128}
    But it doesn't seem to do anything. I'm running a Dell Inspiron 3521 with no dedicated GPU, so it only has one fan. I was somehow able to get i8kmon to work in Ubuntu by putting this config in /etc/i8kmon, but can't get it to work in Arch. Putting it in /etc/i8kmon and /etc/default/i8kmon doesn't do anything.

  • Where is the jar file contain this package

    Dear Everybody
    Could you tell me where is the .jar file that contain this package
    oracle.security.idm
    Thanks for your help

    Hi,
    check jdeveloper_home\jdeveloper_10133_<version>\jlib\identitystore.jar
    Frank

  • Where is the .jar file that contain this package oracle.security.idm

    Dear Everybody
    Could you tell me where is the .jar file that contain this package
    oracle.security.idm
    Thanks for your help

    Hi,
    check jdeveloper_home\jdeveloper_10133_<version>\jlib\identitystore.jar
    Frank

  • Where to put the properties file

    I am a new user of NetBeans6.0, I am making a simple application for user registration. I have coded everything but when I run project I get error caused by the dao.properties file load problem.
    I have put the dao.properties file inside the classes directory(where all java class files are build after running the project) of my web application directory( I didn't create this directory though, it is automatically created by IDE), I think there is a problem with its path.
    where should I put the dao.properties file so that when I run the project the Tomcat automatically find it and also, what the settings I should do?
    actually, I have referred to BalusC'd  DAO tutorial: the data layer but that comes in use when we are working off the IDEs, In my case since I am using Netbeans so it may be different from that one.
    if someone already done that then please let me know

    ok, but will it work if I upload the project in a remote host?
    lets talk besides IDE, as in your DAO tutorial you have instructed to put the properties file somewhere in root of the classpaths. ok, it will work on a local computer cause there is classpath setting but since remote host doesn't know about that property file and we cant set classpath at remote host(I am not sure though if we can) then how will it work at remote host.
    how the server at remote host comes to know about that property file?
    In my case since I have made the project using IDE and everything regarding classpaths have been set automatically(IDE done itself), but at remote host these sort of settings are not done then how the project will run?
    if I have described my problem incorrectly then please consider it as it is supposed to be.

  • Where to put the .txt file in order to read it

    think ur prog can read the data.. but it said
    java:9: unreported exception java.io.FileNotFoundException; must be caught or declared to be thrown
    FileInputStream sStream = new FileInputStream("data.txt");
    so where to paste the .txt file if i want to read it
    same folder with my .java file?

    u must put the .txt file in order to read it as an
    argument to java command at runtime this code may help
    u out
    import java.io.*;
    class Demofin     
    {public static void main(String[] args) throws
    IOException
         int i;
         FileInputStream fin;
              try
                   fin=new FileInputStream(args[0]);
              catch (FileNotFoundException e)
              {System.out.println(" file not found");
              return;
              catch (ArrayIndexOutOfBoundsException e)
                   System.out.println("usage demofin filename.txt");
                   return;
              do
              {i=fin.read();
              if(i!=-1)System.out.print((char) i);
              while (i!=-1);
                   fin.close();
    }Use tags..

  • Where should I put the configuration file?

    Hi
    I'm developping a web application using IBM's websphere as my application server. My application reads configuration information from a properties file.
    My question is: what's the right location to put the configuration file? Should I provide a fixed path, or should I just put in the webserver's execute directory?
    Thanks in advance
    Pedro

    I'd consider what the configuration file is cheifly
    tied to.
    If there are only a small number of parameters then
    put them into the web.xml as initial parameters and
    access then via servlet cotext.
    If they are tied to some class, then I'd put the
    properties file next to the relevant class file and
    use getClass().getResourceAsStream().
    If they relate to the web-app as a whole, I'd put
    them in the WEB-INF directory and access then using
    getServletContext().getResourceAsStream("WEB-INF/xxx.p
    roperties");The one thing you definitely shouldn't do is use an
    absolute file path.Thanks for the reply.
    Forgive my ignorance, but how can I access getServletContext from my web application?
    Thanks again!

  • Where to put the dll file

    hi everyone
    i have a dll file and i want to use it through a java file
    so i wrote a native method and load the directory when the dll is found
    but
    how to set up the library path in my in my environment

    i found the answer i don't have to set up any
    environment variable just put the dll file near the
    java file

  • 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

  • Where is the transport files to enable BODS 4.2 and ECC 5 or earlier comunucation?

    Hello everyone.
    I am working on a project with SAP BODS 4.2, I need to extract information from SAP ECC 4.6, 5 and 6.
    The problem is that the directory where previously BODS versions used to put the transport file (.... \ SAP BusinessObjects \ Data Services \ admin \ R3_Functions) is only one transport, and the readme file has  the next sentence:
    "This document identifies the content of transport files provided with SAP BusinessObjects Data Services. These files use the SAP Correction and Transport System (CTS) to install the Data Services-provided functions.
    For detailed information about installing SAP functions provided by Data Services, see the SAP BusinessObjects Data Services Supplement for SAP.
    If you use a provided transport file, it loads the appropriate functions into a single function group /BODS/BODS, which is automatically created in your SAP system.
    SAP BASIS 4.6D or earlier: 900187.R22"
    Where to find the tranport for ECC version 5 or what is the solution?
    I have no problem for ECC version 6.0

    Dear Daniel,
    I think there will be compatibility issues with BODS 4.1 and ECC 5 or less version.
    I am assuming that for BODS 4.1 the ECC version has to be 6.0  version.
    Please confirm this details prior implementing
    Thanks & Regards

  • Publishing to server: Where do the iWeb files go inside the server files?

    Hi - I've created a 1-page web site called "Chatham" using iWeb, and I'd like to add it as a new page in an old a web site I already own. Here's the URL:
    www.daydreambelievers.net/chatham.html
    I used DreamWeaver to upload the iWeb folder into the "htdocs" folder in the server with the rest of the site docs. But as you can see, none of the graphics are loading.
    So even though all the files are now on the site server, they're not finding each other or loading correctly. Do I have to put the images and other graphics inside particular folders on my server (like moving the iWeb page images into the general "images" file), or do I keep them together in the folder that iWeb created? Does the iWeb folder go in the "htdocs" folder, or in a different folder, or outside?
    Couldn't find any info on this in similar threads, sorry if I missed it. All help appreciated!
    - Andy

    Hi Tom,
    Thanks for the quick reply and the info. Unfortunately, it's still not working.
    Following your instructions, I deleted all previous versions of the "Chatham" iWeb files (both locally and on the server), created a new "Chatham" folder from iWeb, and used Fetch to upload it onto the site server. This time, instead of showing the page without graphics, I got the "file not found" message indicating it couldn't even find the page.
    That brings me back to my original question: exactly where do I put the "Chatham" folder on the server so that the files inside it are recognized by the server, and then the files can find each other and build the page correctly? Should the iWeb folder be placed inside the "htdocs" folder (tried, not working) or by themselves outside all the other folders (tried, not working) or in some new combination in and amongst the folders already there?
    That's what's got me stuck, just that issue of putting the iWeb files in the right place on the server so they can find each other and build the page correctly.
    Once again, all help appreciated. Thanks

  • Where is the ringtone file in iTunes?

    Where is the ringtone file in iTunes?  I am trying to download some ringtones in there.  The website says to save the sound file to the ringtone file in itunes so when I sync I can transfer it over to my iphone

    iTunes>Preferences>General>Show>Tones...make sure Tones is checked. If you can't see the sidebar: iTunes>View>Show Sidebar.
    If the ringtone has the proper extension: m4r, simply dropping it on the iTunes app logo will put it in the proper location.

  • Where is the data file for the address book located, I need to restore mine from backup but don't know where it is.

    Where is the data file for the address book located, I need to restore mine from backup but don't know where it is to do so.  Putting my Mac Pro onto icloud synching contacts resulted in duplicate and triplicates of the same cards.  I have a few THOUSAND contacts and the last time this happened was on mobile me.  that had a function where you could replace info on the mobile me server with info on the computer.  I see no way to do that on the new cloud.

    In the stupidly hidden user's Library->/Application Support/AddressBook/ labeled as AddressBook-v22.abcddb
    For TM restores, see Pondini's TM FAQs for starters, since I don't use TM.

  • Where Are The Master Files Stored For iWeb?

    I can't seem to figure out where the master files are stored in iWeb. For example I was trying to help of friend with his iWeb website, so I told him to send the files - and then I was planning to load them into iWeb on my computer... but I couldn't figure out where to put them... and he did not know where they were either!
    Question: Where are the master files stored for iWeb?

    http://docs.info.apple.com/article.html?artnum=303670
    http://iWebFAQ.com/1Site2Computers
    http://iWebFAQ.com/#Backup

  • How to put the ".class" file in Memory with Javac?

    The J2SE 6 RC have an tool : javax.tools.JavaComplier. I can use it to compile the source code in memory( I implemented an JavaFileObject).
    But the compiler aways put the output file(.class) to file system. It;s not my want to do . I am writing an IDE ,I use javac to determine the code error after the user's typing. So complier is used a lot , writing to file system is a time consuming job.
    I also want to use the byte code(".class" file) for reflection , so if the JavaCompiler can put the output file in memory and then I can reflect it.
    My current solution is puting the output file to file system then use Class.forName() to reload it in memory then reflect it. It seems a useless IO operation with file system.
    How can I do with it?
    Thanks!

    Those 'useless' I/O operations are one or two out of thousands that are implied by compiling a Java source file.
    I wouldn't worry about it.

Maybe you are looking for

  • Connectivity issues to PC and itunes after 3.1 update

    PC and Itunes doesnt recognise the iphone at all since i updated with 3.1. We have tried: * uninstalling itunes and reinstalled * stopped and restarted apple and ipod services (on PC) * Device manager didnt recognise it as a iphone * forced start up

  • Unable to reset password of user through IDM UI (IDM 7.1)

    Hello, We are unable to reset password of users in SAP Backend System through IDM UI. The moment we enter new password and submit, we are getting below dump. Any idea??? java.lang.NullPointerException at com.sap.idm.wd.wf.task.TaskCompView.onActionSa

  • The best way to print a small poster?

    I am a hobby user (Illy CS3) and don't have access to a printer to print anything larger than DIN A4 and I need to make a small poster.  I've made a collage as a gift consisting of photos of friends with their well-wishes in speech bubbles.   I was t

  • Old NFS Volumes are a problem in finder

    Hi, I mount an nfs volume and work on files that are saved on it. I do this manually in finder->Go->Connect to server Sometimes it gets disconnected so I do that again, but there is a problem. The previous volume still exists in the directory. You ca

  • Error in float.h after upgrade to LabWindows 5.5

    After getting a new PC, I installed LabWindows 5.5. A project which has run sucessfully on previous versions now stops with a build error. The error is in the file C:\MeasurementStudio\cvi\include\ansi\float.h at the pragma line: #ifdef WIN32 #pragma