Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #18293 > unrolled thread

How to include a text file in my executable JAR file?

Started byzyng <xsli2@yahoo.com>
First post2012-08-23 08:01 -0700
Last post2012-08-23 14:00 -0700
Articles 7 — 5 participants

Back to article view | Back to comp.lang.java.programmer


Contents

  How to include a text file in my executable JAR file? zyng <xsli2@yahoo.com> - 2012-08-23 08:01 -0700
    Re: How to include a text file in my executable JAR file? zyng <xsli2@yahoo.com> - 2012-08-23 08:04 -0700
    Re: How to include a text file in my executable JAR file? Jan Burse <janburse@fastmail.fm> - 2012-08-23 17:23 +0200
      Re: How to include a text file in my executable JAR file? Jeff Higgins <jeff@invalid.invalid> - 2012-08-23 11:51 -0400
        Re: How to include a text file in my executable JAR file? Jeff Higgins <jeff@invalid.invalid> - 2012-08-23 11:53 -0400
    Re: How to include a text file in my executable JAR file? Lew <lewbloch@gmail.com> - 2012-08-23 13:43 -0700
    Re: How to include a text file in my executable JAR file? Roedy Green <see_website@mindprod.com.invalid> - 2012-08-23 14:00 -0700

#18293 — How to include a text file in my executable JAR file?

Fromzyng <xsli2@yahoo.com>
Date2012-08-23 08:01 -0700
SubjectHow to include a text file in my executable JAR file?
Message-ID<30f3250b-9cea-402f-929a-3191d05a81f2@googlegroups.com>
Hi:

My Java program needs to access a text file(in fact, the Java code will use Linux System command "cp" to copy this text file to a destination folder during running). Suppose this is my Java program HelloWorld.java:

package aa.bb.cc;

public class HelloWorld
{
    ...

    public static void main(final String[] args)
    {
        final URL myUrl = this.getClass().getClassLoader().getResource("namelist.txt");

        final File nameFile = new File(myUrl.getPath());
        if(windowlayoutFile.exists() == false)
        {
            System.out.println(nameFile.getAbsolutePath() + " does not exist!!!");
        }
        else
        {
            System.out.println(nameFile.getAbsolutePath() + " exists");
        }
    }
}

This is the directory and file structure in my file system:
/HOME/java_project/src/aa/bb/cc/HelloWorld.java
/HOME/java_project/build/aa/bb/cc/HelloWorld.class
/HOME/java_project/nonsrc/namelist.txt

In Eclipse, I have added nonsrc as "external class folder" and the code above works! The output is:
/HOME/java_project/nonsrc/windowlayout.xml exists
I am still not clear why use "external class folder", but it works in Eclipse.

Now, my problem is when creating an executable JAR file(helloworld.jar), my JAR content is(shown by the command "jar tf helloworld.jar"):
aa/bb/cc/HelloWorld.class
namelist.txt

Now, if i am at /HOME/test directory and the JAR file is here too:
java -jar helloworld.jar

This is the confusing output:
/HOME/test/file:/HOME/test/robot.jar!/namelist.txt does not exist!!!

The answers by Google just do not give me a clear whole picture of what is going on. (I don't want to put namelist.txt at the same package location as HelloWorld.java. I guess, if I do that, I maybe able to make it work by myself)

I am surprised by an exclamation shown in the file path too. I have never used the class URL in the past, which is used in my code now.

Thank you very much.

[toc] | [next] | [standalone]


#18294

Fromzyng <xsli2@yahoo.com>
Date2012-08-23 08:04 -0700
Message-ID<a1e987be-f0fa-4017-8622-ed32ac83106b@googlegroups.com>
In reply to#18293
Oops, a typo in my original post:

This is the confusing output:
/HOME/test/file:/HOME/test/helloworld.jar!/namelist.txt does not exist!!! 

[toc] | [prev] | [next] | [standalone]


#18295

FromJan Burse <janburse@fastmail.fm>
Date2012-08-23 17:23 +0200
Message-ID<k15htp$tsq$1@news.albasani.net>
In reply to#18293
Try:
URLConnection con = myUrl.openConnection();
InputStream in = con.getInputStream();

You can then copy from the in, via a Java loop.

zyng schrieb:
> Hi:
>
> My Java program needs to access a text file(in fact, the Java code will use Linux System command "cp" to copy this text file to a destination folder during running). Suppose this is my Java program HelloWorld.java:
>
> package aa.bb.cc;
>
> public class HelloWorld
> {
>      ...
>
>      public static void main(final String[] args)
>      {
>          final URL myUrl = this.getClass().getClassLoader().getResource("namelist.txt");
>
>          final File nameFile = new File(myUrl.getPath());
>          if(windowlayoutFile.exists() == false)
>          {
>              System.out.println(nameFile.getAbsolutePath() + " does not exist!!!");
>          }
>          else
>          {
>              System.out.println(nameFile.getAbsolutePath() + " exists");
>          }
>      }
> }
>
> This is the directory and file structure in my file system:
> /HOME/java_project/src/aa/bb/cc/HelloWorld.java
> /HOME/java_project/build/aa/bb/cc/HelloWorld.class
> /HOME/java_project/nonsrc/namelist.txt
>
> In Eclipse, I have added nonsrc as "external class folder" and the code above works! The output is:
> /HOME/java_project/nonsrc/windowlayout.xml exists
> I am still not clear why use "external class folder", but it works in Eclipse.
>
> Now, my problem is when creating an executable JAR file(helloworld.jar), my JAR content is(shown by the command "jar tf helloworld.jar"):
> aa/bb/cc/HelloWorld.class
> namelist.txt
>
> Now, if i am at /HOME/test directory and the JAR file is here too:
> java -jar helloworld.jar
>
> This is the confusing output:
> /HOME/test/file:/HOME/test/robot.jar!/namelist.txt does not exist!!!
>
> The answers by Google just do not give me a clear whole picture of what is going on. (I don't want to put namelist.txt at the same package location as HelloWorld.java. I guess, if I do that, I maybe able to make it work by myself)
>
> I am surprised by an exclamation shown in the file path too. I have never used the class URL in the past, which is used in my code now.
>
> Thank you very much.
>
>

[toc] | [prev] | [next] | [standalone]


#18296

FromJeff Higgins <jeff@invalid.invalid>
Date2012-08-23 11:51 -0400
Message-ID<k15jh0$vjj$1@dont-email.me>
In reply to#18295
On 08/23/2012 11:23 AM, Jan Burse wrote:
> Try:
> URLConnection con = myUrl.openConnection();
> InputStream in = con.getInputStream();
>
> You can then copy from the in, via a Java loop.
>
> zyng schrieb:
>> Hi:
>>
>> My Java program needs to access a text file(in fact, the Java code
>> will use Linux System command "cp" to copy this text file to a
>> destination folder during running). Suppose this is my Java program
>> HelloWorld.java:
>>
>> package aa.bb.cc;
>>
>> public class HelloWorld
>> {
>> ...
>>
>> public static void main(final String[] args)
>> {
>> final URL myUrl =
>> this.getClass().getClassLoader().getResource("namelist.txt");
>>
>> final File nameFile = new File(myUrl.getPath());
>> if(windowlayoutFile.exists() == false)
>> {
>> System.out.println(nameFile.getAbsolutePath() + " does not exist!!!");
>> }
>> else
>> {
>> System.out.println(nameFile.getAbsolutePath() + " exists");
>> }
>> }
>> }
>>
>> This is the directory and file structure in my file system:
>> /HOME/java_project/src/aa/bb/cc/HelloWorld.java
>> /HOME/java_project/build/aa/bb/cc/HelloWorld.class
>> /HOME/java_project/nonsrc/namelist.txt
>>
>> In Eclipse, I have added nonsrc as "external class folder" and the
>> code above works!

Eclipse has added nonsrc to the classpath
and getResource is able to find it.

Use a relative URL?

The output is:
>> /HOME/java_project/nonsrc/windowlayout.xml exists
>> I am still not clear why use "external class folder", but it works in
>> Eclipse.
>>
>> Now, my problem is when creating an executable JAR
>> file(helloworld.jar), my JAR content is(shown by the command "jar tf
>> helloworld.jar"):
>> aa/bb/cc/HelloWorld.class
>> namelist.txt
>>
>> Now, if i am at /HOME/test directory and the JAR file is here too:
>> java -jar helloworld.jar
>>
>> This is the confusing output:
>> /HOME/test/file:/HOME/test/robot.jar!/namelist.txt does not exist!!!
>>
>> The answers by Google just do not give me a clear whole picture of
>> what is going on. (I don't want to put namelist.txt at the same
>> package location as HelloWorld.java. I guess, if I do that, I maybe
>> able to make it work by myself)
>>
>> I am surprised by an exclamation shown in the file path too. I have
>> never used the class URL in the past, which is used in my code now.
>>
>> Thank you very much.
>>
>>
>

[toc] | [prev] | [next] | [standalone]


#18297

FromJeff Higgins <jeff@invalid.invalid>
Date2012-08-23 11:53 -0400
Message-ID<k15jll$vjj$2@dont-email.me>
In reply to#18296
Oops! Sorry Jan Burse, I meant to reply to the original thread.

[toc] | [prev] | [next] | [standalone]


#18304

FromLew <lewbloch@gmail.com>
Date2012-08-23 13:43 -0700
Message-ID<55e2cfd7-dee0-43f8-a219-9bf5c7383189@googlegroups.com>
In reply to#18293
zyng wrote:
> My Java program needs to access a text file(in fact, the Java code will use Linux System command "cp" to copy this text file to a destination folder during running). Suppose this is my Java program HelloWorld.java:
> 
> package aa.bb.cc;
> 
> public class HelloWorld
> {
>     ...
>     public static void main(final String[] args)
>     {
>         final URL myUrl = this.getClass().getClassLoader().getResource("namelist.txt");

<http://docs.oracle.com/javase/7/docs/api/java/lang/ClassLoader.html#getResource(java.lang.String)>

You don't actually need to get the 'ClassLoader' explicitly, as the 'Class' method 
will work, too.

<http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html#getResource(java.lang.String)>

Both these search the classpath.

Entries in ZIP files (like JARs) are distinguished by <JARname>!path

>         final File nameFile = new File(myUrl.getPath());
>         if(windowlayoutFile.exists() == false)

'== false', really?

What's wrong with 'if (!windowlayoutFile.exists())'?

>         {
>             System.out.println(nameFile.getAbsolutePath() + " does not exist!!!");
>         }
>         else
>         {
>             System.out.println(nameFile.getAbsolutePath() + " exists");
>         }
>     }
> }
> 
> 
> This is the directory and file structure in my file system:
> /HOME/java_project/src/aa/bb/cc/HelloWorld.java
> /HOME/java_project/build/aa/bb/cc/HelloWorld.class
> /HOME/java_project/nonsrc/namelist.txt
> 
> In Eclipse, I have added nonsrc as "external class folder" and the code above works! The output is:
> /HOME/java_project/nonsrc/windowlayout.xml exists
> I am still not clear why use "external class folder", but it works in Eclipse.

You added the folder to your classpath. You'd do the same thing with the 
"-classpath" ("-cp") option from the tools' command line.

> Now, my problem is when creating an executable JAR file(helloworld.jar), my JAR content is(shown by the command "jar tf helloworld.jar"):
> 
> aa/bb/cc/HelloWorld.class
> 
> namelist.txt

So 'namelist.txt' is at the root of the JAR classpath node.

'HelloWorld' is 'aa.bb.cc.HelloWorld'.
'namelist.txt' is in the default (unnamed) package.

> Now, if i am at /HOME/test directory and the JAR file is here too:
> 
> java -jar helloworld.jar
> 
> This is the confusing output:
> 
> /HOME/test/file:/HOME/test/robot.jar!/namelist.txt does not exist!!!

"robot.jar"?

You're running from the JAR. Local directories have no relevance, except 
as you access them via 'File' constructs.

> The answers by Google just do not give me a clear whole picture of what is going on. (I don't want to put namelist.txt at the same package location as HelloWorld.java. I guess, if I do that, I maybe able to make it work by myself)

It's in the default package, findable via 'getResource("/namelist.txt")'.

> I am surprised by an exclamation shown in the file path too. I have never used the class URL in the past, which is used in my code now.

The bang character is part of the ZIP file reference syntax.

But when you run "java -jar" you have to specify all extrinsic classpath 
stuff in the JAR manifest. Otherwise only elements within the JAR are accessible.

-- 
Lew

[toc] | [prev] | [next] | [standalone]


#18305

FromRoedy Green <see_website@mindprod.com.invalid>
Date2012-08-23 14:00 -0700
Message-ID<re6d38997sdkg33ljnbeeeaqislmnlakea@4ax.com>
In reply to#18293
On Thu, 23 Aug 2012 08:01:19 -0700 (PDT), zyng <xsli2@yahoo.com>
wrote, quoted or indirectly quoted someone who said :

>My Java program needs to access a text file(in fact, the
 Java code will use Linux System command "cp" to copy this text file
to a destination folder during running). Suppose this is my Java
program HelloWorld.java:

you include it with ANT or Jar.exe

You access it using getResource or getResourceAsStream.
See http://mindprod.com/jgloss/resource.html

for image examples see http://mindprod.com/jgloss/image.html
-- 
Roedy Green Canadian Mind Products http://mindprod.com
A new scientific truth does not triumph by convincing its opponents and making them see the light,
but rather because its opponents eventually die, and a new generation grows up that is familiar with it.
~ Max Planck 1858-04-23 1947-10-04 

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.java.programmer


csiph-web