Add external Jar file


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Add external Jar file
# 1  
Old 10-02-2011
Question Add external Jar file

Hi,
how to add external jar file in jsp application on eclipse.

Thanks
SNSmilie

Last edited by snallusami; 10-02-2011 at 08:22 AM.. Reason: keyword is wrong
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Getting the version from jar file

Hi, I am trying to retrieve the "Implementation version" from one of the .jar file The command which tried is as below. find /usr/local/platform -name "platform.jar" -exec zipgrep "Implementation-Version:" '{}' \;|awk -F ': ' '{print $2}'I am able to get the version as below 2.9.0-29But... (2 Replies)
Discussion started by: nextStep
2 Replies

2. Programming

Altering a jar file

I have a script I am trying to test and run but it runs against a jar file. I wrote an external property file so it would redirect with my script, but it keeps going in search of the previous property file. Is there any way to externally over write the jar file and if not how do you go about... (7 Replies)
Discussion started by: risarose87
7 Replies

3. Shell Programming and Scripting

Want to write all the jar name in single with delimiter ":" in beween the jar name

Hi All, I am having 7 jar files in a dir. abc like listed below bash-3.00$ cd abc bash-3.00$ ls 123.jar 23wdawd.jar dfsa23.jar dsa.jar wew234.jar adsd234234.jar dfsda423.jarNow i want to assign all this jar files to a variable in the below format ... (6 Replies)
Discussion started by: natraj005
6 Replies

4. UNIX for Advanced & Expert Users

File count limit in jar ?

Hello everyone, I am using jar to consolidate a large number of files for transfer, about 2500. The jar command seems to work fine and it says ....adding.... files while it is building the archive. If I capture the messages to a log the log has 2500 lines each of them says I file was addedd... (2 Replies)
Discussion started by: gio001
2 Replies

5. UNIX for Dummies Questions & Answers

down in JAR file

Hello sir, I have created a jar file having some code in java.What it does is that it calls a shell code (a.sh) which is in the same directory. Now my requirement is that I want to jar the a.sh also along with the other files and want to call the a.sh which is now inside the jar file and not... (1 Reply)
Discussion started by: nsharath
1 Replies

6. Shell Programming and Scripting

Search inside a Jar file..

Hey Guys, I need to search inside all the jar files of my directory for a specific string. Can anyone guide me as to how i can do it. I need this urgently please. More specifically i need to search for a class file name in the jar files. Thanks in advance :-) (4 Replies)
Discussion started by: srikumar_cs
4 Replies

7. Programming

JAVA - External JAR files in UNIX

Hi, I have to run my JAVA programs in UNIX server. The java program uses some external jar files for compiling. I have set the classpath to the folder where all the jar files are present using EXPORT classpath command. But when i compile, it shows errors.. saying that the classes relating... (8 Replies)
Discussion started by: satish2712
8 Replies

8. UNIX for Dummies Questions & Answers

find string in .jar file

Hello, I have a .jar file and am trying to figure out if it is possible to search for some text in all the files in it without extracting it. I was able to do it using jar xf <filename>.jar and then using grep but want a one liner. Thanks in advance:) (8 Replies)
Discussion started by: rakeshou
8 Replies

9. Shell Programming and Scripting

Jar File Search!

Hi vgersh99, Iam sorry for that. In future, I will start new threads for different topics. Assuming that we don't know what the name of the jar file, we are searching for is, do we have any way, of finding a string or a file in it. Is there any Unix command for it? thanks. (2 Replies)
Discussion started by: pjanakir
2 Replies
Login or Register to Ask a Question
JH_INSTALLECLIPSE(1)						    Javahelper						      JH_INSTALLECLIPSE(1)

NAME
jh_installeclipse - Installs eclipse features built by pde-build into package build directories SYNOPSIS
jh_installeclipse [debhelperoptions] [--install-name=name] [--pde-build-dir=dir] [feature[...]] DESCRIPTION
jh_installeclipse is a javahelper program that handles installing eclipse features built by pde-build into package build directories. These features can be specified either in the package's eh-install file or via command-line. jh_installeclipse uses debhelper behind the scenes and are therefore subject to the compat level (e.g. when parsing eh-install files). jh_installeclipse will replace all the embedded orbit depends imported by jh_generateorbitdeps with symlinks post install. The symlinked jar files will also be used to populate ${orbit:Depends} variable. FILES
debian/package.eh-install List the eclipse features to install into each package and optionally under which name. The format is a set of lines, where each line lists a file or files to install, and at the end of the line tells the name it should be installed under. You may use wildcards in the names of the files to install. If name is not present, eh_install will either use the install name given on the command line or attempt to guess it from the package name. It is perfectly legal for two or more features to be installed under the same name. OPTIONS
--install-name=name Specifies the name to install under if it is not given in the file. It is perfectly legal to install more than one feature under the same name. --pde-build-dir=dir Specifies the directory from where pde-build was run. Defauls to "debian/.eclipse_build". EXAMPLE
Suppose your package builds org.eclipse.emf and org.eclipse.xsd and you want to put org.eclipse.emf into eclipse-emf and org.eclipse.xsd into eclipse-xsd. Then make debian/eclipse-emf.eh-install contain: org.eclipse.emf and debian/eclipse-xsd.eh-install contain: org.eclipse.xsd jh_installeclipse will then install org.eclipse.emf into usr/share/eclipse/dropins/emf/ and xsd into usr/share/eclipse/dropins/xsd/. In case your package is not called eclipse-name, or you want to install two different features into the same package, you will have to provide a name. Suppose you wanted to install both eclipse above into a single package called foo, then debian/foo.eh-install should contain: org.eclipse.emf emf org.eclipse.xsf xsd SEE ALSO
debhelper(7) This program is a part of javahelper and uses debhelper as backend. There are also tutorials in /usr/share/doc/javahelper. AUTHOR
Niels Thykier <niels@thykier.net> COPYRIGHT AND LICENSE
Copyright 2010 by Niels Thykier This tool is free software; you may redistribute it and/or modify it under the terms of GNU GPL 2. 0.43 2011-03-24 JH_INSTALLECLIPSE(1)