I am a Postdoctoral Research Fellow with The SUTD-MIT International Design Centre (IDC), Singapore University of Technology and Design (SUTD). My research topic is about protocol and algorithm design, resource allocation and localisation in wireless sensor network, UAV network and Ad Hoc network. I also enjoy the mobile programming (Android and Objective-C) and web server development. Thanks for sharing.
Jun 2, 2012
Compile java files in all subfolders
On Windows...
Firstly create a batch file as complie.bat. Write these lines in that
for /r %%a in (*.java) do ( javac "%%a" )
now execute.
On Linux....
javac $(find ./rootdir/* | grep .java)
Subscribe to:
Posts (Atom)