Search Results

0
votes
1answer
78 views

Are there any Java 5 VM for embedded environments?

Hi, for a project that targets embedded systems (such as a NAS) I am looking for an embedded Java VM that would support Java 5 and up. Currently, Java 1.4 is supported by VM like IBM's J9. …
1
vote

What’s the best way to get started with OSGI?

There are a couple of thinks to keep in mind if you are starting with OSGi. As mentioned elsewhere in this thread, knowing about classloading is really important. In my experience everybody …
1
vote

How can I determine the IP of my router/gateway in Java?

Regarding UPnP: be aware that not all routers support UPnP. And if they do it could be switched off (for security reasons). So your solution might not always work. You should also have a lo …
2
votes

Sprintf equivalent in Java

Have a look at Formatted Printing for Java (sprintf) …
0
votes

Linux commands from Java

have a look at java.lang.Runtime …
8
votes

Why does “abcd”.StartsWith(””) return true?

Well, because it is specified this way. See here. …
0
votes

Which Rich Client Platform to use

Of course it all depends on the kind of applications and services you want to provide, and the target environment. But I can also recommend OSGi as a development and deployment platform. The underl …
0
votes

Including additional resources with OSGi bundles

Your solution works, of course. But you have to be careful to also stop and remove any resource that you extracted and started during the installation. This might especially difficult to track in c …
0
votes

Service References in OSGi

Regarding your question whether it is dangerous to use a service instance after the service has been stopped. To cite from the 4.2 core spec (5.4 Stale References): The behav …
1
vote

How do I register a service in OSGi (Apache Felix)?

I understand that you have SomeInterface in another bundle, right? Then you must also export that package in that bundle's manifest, eg. Export-Bundle: interfaces …