使用com4j连接到现有的iTunes实例

时间:2017-04-21 18:28:28

标签: java com4j

使用com4j和iTunes包装器,我可以启动iTunes的实例

 ClassFactory.createiTunesApp();

从我的应用程序中成功使用api。

但如果iTunes已经独立运行,那么

就会失败
com4j.ExecutionException: com4j.ComException: 80080005 CoCreateInstance failed : Server execution failed : .\com4j.cpp:153
    at com4j.ComThread.execute(ComThread.java:236)
    at com4j.Task.execute(Task.java:26)
    at com4j.COM4J.createInstance(COM4J.java:99)
    at com4j.COM4J.createInstance(COM4J.java:74)
    at com.jthink.songkong.itunes.ClassFactory.createiTunesApp(ClassFactory.java:16)
    at com.jthink.songkong.ituneshelper.WindowsITunesModelCreator.createITunesModelInternal(WindowsITunesModelCreator.java:42)
    at com.jthink.songkong.ituneshelper.ITunesModelCreator.createITunesModel(ITunesModelCreator.java:263)
    at com.jthink.songkong.ituneshelper.ITunesModelCreator.run(ITunesModelCreator.java:227)
    at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
    at java.util.concurrent.FutureTask.run(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
Caused by: com4j.ComException: 80080005 CoCreateInstance failed : Server execution failed : .\com4j.cpp:153
    at com4j.Native.createInstance(Native Method)
    at com4j.COM4J$CreateInstanceTask.call(COM4J.java:119)
    at com4j.COM4J$CreateInstanceTask.call(COM4J.java:106)
    at com4j.Task.invoke(Task.java:50)
    at com4j.ComThread.run0(ComThread.java:172)
    at com4j.ComThread.run(ComThread.java:153)

因为iTunes已经在运行所以有没有办法可以连接到现有的iTunes实例,而不是在iTunes已经运行的情况下尝试创建一个新实例?

1 个答案:

答案 0 :(得分:-1)

目前没有解决方案,因为您使用的应用程序不支持64位作为32位应用程序。该问题已在Xira Dashboard中发布:https://java.net/jira/browse/COM4J-80

据推测,这与其他人在尝试在Windows XP / Server 2003及更高版本上运行时遇到的问题相同,当客户运行64位且开发环境为32位时。

实际上使用32位JVM不会发生此问题。