scrren sharing
-
how to make screen sharing in java
-
how to make screen sharing in java
The simple answer is that you can't. Java runs an an application so it doesn't have access to the 'screen'. It is possible to share the application with another application though. One could do something with Java but it would require writing something in another language besides Java (like C++) and then have the java app interact with the C++ code. Although I suspect in such a case the java code itself might be only a small part of the overall solution.
-
how to make screen sharing in java
I've never done this before but maybe I might be of help if I just gave you the layout. For the simplest, you could capture the screen into a PNG and stream it to the other party. Bitmaps are "heavy" when it comes to this. If you want to try it with me we can do it.
God's life services are free of charge.
-
I've never done this before but maybe I might be of help if I just gave you the layout. For the simplest, you could capture the screen into a PNG and stream it to the other party. Bitmaps are "heavy" when it comes to this. If you want to try it with me we can do it.
God's life services are free of charge.
chx101B wrote:
and stream it to the other party.
I don't suspect that this would work for 'sharing'. Viewing perhaps. The problem is that the target computer would then need to analyze each picture to identify components, such as icons, windows, etc, before the target user could interact with it.
-
chx101B wrote:
and stream it to the other party.
I don't suspect that this would work for 'sharing'. Viewing perhaps. The problem is that the target computer would then need to analyze each picture to identify components, such as icons, windows, etc, before the target user could interact with it.