Forums Register Login

quick question on excluding certain files from javac...

+Pie Number of slices to send: Send
Hi,

I hoped to avoid a potentially lengthy and frustrating detour into regex syntax land and ask the following (I hope) simple question here...

How do I exclude compilation of java files with a certain string in their file names? In my case, I want to javac all files in a package except those containing the string "Test", e.g., RmiImplTest.java.

I hoped the experienced hands on the Ranch would know this cold!

Thanks,

Grary
+Pie Number of slices to send: Send

I am assuming you are looking into writing a batch file or shellscript? if so, you need to give more details, such as OS, etc.

Henry
+Pie Number of slices to send: Send
Peculiar. Most people have the opposite problem, namely how to ensure that a certain file is compiled at all. If I remember correctly, the javac tool assumes that .java files imported from packages have already been compiled. It doesn't seem to compile them unless you instruct it to compile them.

How about

javac mypackage/*Test.java

?

And this is too difficult for beginners. Moving.
+Pie Number of slices to send: Send
Thanks for your replies.

No, I'm not writing a script. In development, I had wanted to test certain package-access class behaviors, so I included test files inside some packages. I do not want those test classes included in the final jar. So, I just want to exclude from my compilation via javac any .java files with the segment "Test" in their filename. So, I'm looking for some regex that does that.

Thanks for any further comment.

Thanks again,

Grary
+Pie Number of slices to send: Send
 

No, I'm not writing a script.



Then you need to elaborate. Just exactly what are you using to build the jar files?

Henry
+Pie Number of slices to send: Send
Exclude them without Test. Oh sorry, I misread the original post.

How about what follows?

. . .


Find the classic Daconta paper about Runtime.exec(). Go through your package folder with the methods of the File class. Find all the file names. You can probably scan them with the indexOf method of String.
Then compile those which pass the test, using Runtime.exec().
+Pie Number of slices to send: Send
If you're using Ant this is trivial. Or Unix-like shell.

I'm more used to seeing test code in a completely separate directory, which is the easiest solution of all.
+Pie Number of slices to send: Send
Thanks all for your comments. It seems that I should start using Ant.

Grary
+Pie Number of slices to send: Send
You're welcome
Thanks tiny ad, for helping me escape the terrible comfort of this chair.
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 1348 times.
Similar Threads
-classpath switch
MyEclipse 6.0.1 compilation problem
ClassNames
send an int value over the network
problem in compiling Action class?
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 15:02:32.