FileNotFoundException with oscP5
in
Contributed Library Questions
•
2 years ago
Dear Forum,
I have a bug using oscP5 on processing 1.2.1, ubuntu 10.04.
Really simple test program :
Return me :
processing.app.debug.RunnerException: FileNotFoundException: /usr/lib/jvm/java-1.5.0-sun-1.5.0.19/jre/lib/zi/localtime (No such file or directory)
at processing.app.Sketch.placeException(Sketch.java:1628)
at processing.app.debug.Runner.findException(Runner.java:584)
at processing.app.debug.Runner.reportException(Runner.java:560)
at processing.app.debug.Runner.exception(Runner.java:500)
at processing.app.debug.EventThread.exceptionEvent(EventThread.java:367)
at processing.app.debug.EventThread.handleEvent(EventThread.java:255)
at processing.app.debug.EventThread.run(EventThread.java:89)
processing.app.debug.RunnerException: FileNotFoundException: /usr/lib/jvm/java-1.5.0-sun-1.5.0.19/jre/lib/zi/GMT+01:00 (No such file or directory)
at processing.app.Sketch.placeException(Sketch.java:1628)
at processing.app.debug.Runner.findException(Runner.java:584)
at processing.app.debug.Runner.reportException(Runner.java:560)
at processing.app.debug.Runner.exception(Runner.java:500)
at processing.app.debug.EventThread.exceptionEvent(EventThread.java:367)
at processing.app.debug.EventThread.handleEvent(EventThread.java:255)
at processing.app.debug.EventThread.run(EventThread.java:89)
processing.app.debug.RunnerException: FileNotFoundException: /usr/lib/jvm/java-1.5.0-sun-1.5.0.19/jre/lib/zi/GMT+01:00 (No such file or directory)
at processing.app.Sketch.placeException(Sketch.java:1628)
at processing.app.debug.Runner.findException(Runner.java:584)
at processing.app.debug.Runner.reportException(Runner.java:560)
at processing.app.debug.Runner.exception(Runner.java:500)
at processing.app.debug.EventThread.exceptionEvent(EventThread.java:367)
at processing.app.debug.EventThread.handleEvent(EventThread.java:255)
at processing.app.debug.EventThread.run(EventThread.java:89)
### [2011/3/22 12:43:11] PROCESS @ OscP5 stopped.
### [2011/3/22 12:43:11] PROCESS @ UdpClient.openSocket udp socket initialized.
### [2011/3/22 12:43:12] PROCESS @ UdpServer.start() new Unicast DatagramSocket created @ port 12000
### [2011/3/22 12:43:12] PROCESS @ UdpServer.run() UdpServer is running @ 12000
### [2011/3/22 12:43:12] INFO @ OscP5 is running. you (127.0.1.1) are listening @ port 12000
### [2011/3/22 12:43:26] PROCESS @ OscP5 stopped.
### [2011/3/22 12:43:26] PROCESS @ UdpServer.run() socket closed.
It's a problem about timezone, but what i can do ?
Thanks
I have a bug using oscP5 on processing 1.2.1, ubuntu 10.04.
Really simple test program :
- import oscP5.*;
- import netP5.*;
- OscP5 oscP5;
- NetAddress MyBroadcastLocation;
- void setup() {
- size(400,400);
- oscP5 = new OscP5(this,12000);
- MyBroadcastLocation = new NetAddress("192.168.0.14", 12000);
- }
- void draw() {
- }
- /* incoming osc message are forwarded to the oscEvent method. */
- void oscEvent(OscMessage theOscMessage) {
- /* get and print the address pattern and the typetag of the received OscMessage */
- println("### received an osc message with addrpattern "+theOscMessage.addrPattern()+" and typetag "+theOscMessage.typetag());
- theOscMessage.print();
- }
Return me :
processing.app.debug.RunnerException: FileNotFoundException: /usr/lib/jvm/java-1.5.0-sun-1.5.0.19/jre/lib/zi/localtime (No such file or directory)
at processing.app.Sketch.placeException(Sketch.java:1628)
at processing.app.debug.Runner.findException(Runner.java:584)
at processing.app.debug.Runner.reportException(Runner.java:560)
at processing.app.debug.Runner.exception(Runner.java:500)
at processing.app.debug.EventThread.exceptionEvent(EventThread.java:367)
at processing.app.debug.EventThread.handleEvent(EventThread.java:255)
at processing.app.debug.EventThread.run(EventThread.java:89)
processing.app.debug.RunnerException: FileNotFoundException: /usr/lib/jvm/java-1.5.0-sun-1.5.0.19/jre/lib/zi/GMT+01:00 (No such file or directory)
at processing.app.Sketch.placeException(Sketch.java:1628)
at processing.app.debug.Runner.findException(Runner.java:584)
at processing.app.debug.Runner.reportException(Runner.java:560)
at processing.app.debug.Runner.exception(Runner.java:500)
at processing.app.debug.EventThread.exceptionEvent(EventThread.java:367)
at processing.app.debug.EventThread.handleEvent(EventThread.java:255)
at processing.app.debug.EventThread.run(EventThread.java:89)
processing.app.debug.RunnerException: FileNotFoundException: /usr/lib/jvm/java-1.5.0-sun-1.5.0.19/jre/lib/zi/GMT+01:00 (No such file or directory)
at processing.app.Sketch.placeException(Sketch.java:1628)
at processing.app.debug.Runner.findException(Runner.java:584)
at processing.app.debug.Runner.reportException(Runner.java:560)
at processing.app.debug.Runner.exception(Runner.java:500)
at processing.app.debug.EventThread.exceptionEvent(EventThread.java:367)
at processing.app.debug.EventThread.handleEvent(EventThread.java:255)
at processing.app.debug.EventThread.run(EventThread.java:89)
### [2011/3/22 12:43:11] PROCESS @ OscP5 stopped.
### [2011/3/22 12:43:11] PROCESS @ UdpClient.openSocket udp socket initialized.
### [2011/3/22 12:43:12] PROCESS @ UdpServer.start() new Unicast DatagramSocket created @ port 12000
### [2011/3/22 12:43:12] PROCESS @ UdpServer.run() UdpServer is running @ 12000
### [2011/3/22 12:43:12] INFO @ OscP5 is running. you (127.0.1.1) are listening @ port 12000
### [2011/3/22 12:43:26] PROCESS @ OscP5 stopped.
### [2011/3/22 12:43:26] PROCESS @ UdpServer.run() socket closed.
It's a problem about timezone, but what i can do ?
Thanks
1