Java Media API:java media api 下载
我在哪里可以找到 javax.media.*
jar 文件.. 在 sun 站点中它会下载一个安装程序。有没有可用的java媒体jar?
Where can i find javax.media.*
jar file..
In sun site it downloads an installer. Is there any available of the media jar for java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
没有具体的
javax.media.*
jar 文件。该包位于 jmf.jar 文件中。您需要运行安装程序并取出 jar,或者跨平台安装只是一个 zip 文件(此 jar 不使用任何本机库,因此不需要安装),其中包含 jar它。There is no
javax.media.*
jar file specifically. That package is in the jmf.jar file. You will need to either run the installer and take out the jar, or the cross platform install is just a zip file (this jar doesn't use any native libraries, so it doesn't need to be installed) that has the jar in it.您可以考虑使用依赖项管理器来帮助您的库保持井井有条。例如,如果您将项目设置为 Maven 项目,那么您可以将任何库依赖项添加到 pom.xml 文件中,它将处理获取资源。
如果您使用像 Eclipse 这样带有 Maven 设置(M2Eclipse 插件)的 IDE,那么您可以搜索 javax.media,您可以选择从不同的位置以及特定的类和版本号中进行选择,然后这些类和版本号将保持一致,直到您使用将您的依赖项更新到不同的库。
You might consider using a dependency manager to help keep your libraries organized. For example, if you have your project setup as a maven project, then you can add any library dependencies to your pom.xml file and it will handle grabbing the resources.
If you're using an IDE like Eclipse with Maven setup (M2Eclipse plugin), then you can search for javax.media and you'll have the option to select from different locations and specific classes and version numbers that will then stay consistent until you update your dependencies to a different library.
在这里你可以找到所有类型的媒体 api 和 3D 库....
http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-java-client-419417.html#7372-jmf-2.1.1e-oth-JPR< /a>
Here u can find all kind of media api and also 3D libraries....
http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-java-client-419417.html#7372-jmf-2.1.1e-oth-JPR
下载 jmf-2_1_1e-alljava JAR 文件后,像提取任何 zip 文件夹一样提取文件,具体取决于您的操作系统。在您使用的编辑器中打开您的项目,右键单击并选择构建路径,选择库,选择添加 JAR/文件,导航到保存 jmf 文件的位置,双击该文件,选择 lib。在那里你会看到看起来像一堆罐子的东西,单击其中一个将其打开,它将出现在你眼前的大面板中,你必须对每个罐子执行此操作,你听到了吗,每个和他们每个人,完成后单击“确定”,然后“Bam”,您应该可以走了,玩得开心!..
After you download the jmf-2_1_1e-alljava JAR file, extract the files like you would do any zip folder depending on you operating system. Open your project in the editor that you use, right click and select build path, select libraries, Select Add JAR/Files, navigate to where you saved you jmf file, double click the file, select lib. There you will see what looks like a bunch of jars, Click on one of them to open it, It will appear in the large panel before your eyes, You have to do this for each and every jar, Did you hear me, Each and everyone of them, When you're done click OK, And "Bam", You should be good to go, Have fun!..
请转到此链接
http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-java-client-419417.html#7372-jmf-2.1.1e-oth-JPR< /a>
并下载 Java Media Framework (JMF) 2.1.1e 安装在您的系统中。在位置 C:\Program Files\JMF2.1.1e\lib 中找到 jar 文件后,您可以看到
jmf.jar 可以在您的项目(netbeans)lib 中右键单击并将 jar 文件添加到此中进行浏览,以解决问题。
please go to this link
http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-java-client-419417.html#7372-jmf-2.1.1e-oth-JPR
and download Java Media Framework (JMF) 2.1.1e install in your system. after you can find the jar file in location C:\Program Files\JMF2.1.1e\lib u can see the
jmf.jar this can be browse by in your project(netbeans) lib right click and add jar file to this slove the issue.