Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You need to use JSR-135 and JSR-75 to accomplish this. Check <a href="http://www.forum.nokia.com/document/Java_Developers_Library_v2/GUID-96C1B6E4-C266-42A9-9581-A6EEDAC44AC4_GUID-B6B3EB3A-05F6-4CD4-920A-8ED818328681.html" rel="nofollow noreferrer">http://www.forum.nokia.com/document/Java_Developers_Library_v2/GUID-96C1B6E4-C266-42A9-9581-A6EEDAC44AC4_GUID-B6B3EB3A-05F6-4CD4-920A-8ED818328681.html</a> for Nokia implementation notes for JSR-75 FileConnection. </p> <p>Check <a href="http://www.forum.nokia.com/document/Java_Developers_Library_v2/GUID-96C1B6E4-C266-42A9-9581-A6EEDAC44AC4_GUID-F227753C-29F7-4056-AB46-1BD80F83E109.html" rel="nofollow noreferrer">http://www.forum.nokia.com/document/Java_Developers_Library_v2/GUID-96C1B6E4-C266-42A9-9581-A6EEDAC44AC4_GUID-F227753C-29F7-4056-AB46-1BD80F83E109.html</a> for Nokia implementation notes for JSR-135 Mobile Media.</p> <p>The Javadocs can be found: <a href="http://java.sun.com/javame/reference/apis/jsr135/" rel="nofollow noreferrer">http://java.sun.com/javame/reference/apis/jsr135/</a> and <a href="http://www.forum.nokia.com/document/Java_Developers_Library_v2/GUID-D69FC49D-783E-45CE-80D4-7A9F3EE08B2A/overview-summary.html" rel="nofollow noreferrer">http://www.forum.nokia.com/document/Java_Developers_Library_v2/GUID-D69FC49D-783E-45CE-80D4-7A9F3EE08B2A/overview-summary.html</a> .</p> <p>Note that only certain directories are exposed via Java ME. You can find information on which folders under the System properties link in the JSR-75 link above.</p> <p>Basically you want to do this:</p> <ul> <li>Use FileConnection to open a directory and list it contents.</li> <li>Let the user choose one of the files in the directory.</li> <li>Create a video player via JSR-135 with the file path as input: Player player = Manager.createPlayer("path_to_the_file");</li> <li>You also have to attach a VideoControl to the player that associoates a canvas/form to render the video on. (Use VideoControl.initDisplayMode). You also set all the video properties via this control, such as size, location etc.</li> <li>Then use player.start() to start the playback.</li> </ul> <p>This is a pretty good starting tutorial: <a href="http://today.java.net/pub/a/today/2005/09/27/j2me4.html" rel="nofollow noreferrer">http://today.java.net/pub/a/today/2005/09/27/j2me4.html</a></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload