Hello,
I am new to Processing and also to Java (though I’ve coded a lot in other languages). I am trying to read some text from a web page for my sketch, so I tried to follow the instructions in this link, and do something like: URL rurl = new URL("http://www.oracle.com/");
However this is not working, and I keep getting MalformedURLException, regardless of the url that I use (including the one in the Oracle example, or “http://example.com”).
The error apparently occurs before the code is executed, seemingly because the IDE tries to execute the command. This seems weird and also makes it difficult to debug. (Again I am a Java novice, maybe that’s how it is in Java-land.)
I hope some Java or URL experts who can shed light on this problem… Thanks in advance!