桌面 java 应用通过 USB 复制和传输 android 数据
Desktop java app copy and transfer android data via USB
我有一个桌面 java 应用程序,还有一个 android 应用程序。两个应用协同工作。
桌面应用程序中的用户有一个按钮可以启动设备数据应用程序与计算机应用程序之间的传输,反之亦然。
所以我需要使用简单的 USB 数据线传输数据,并且没有互联网 connection/WiFi/Bluetooth/adb。
我找到了两个 Java MTP 库,可以在 Windows 上使用来解决我的问题,以及 android 的 USB Host/accesory 功能:
jMTP 成功识别了我的 Android 设备、文件夹和其他东西
我在电脑--->设备中传输文件成功,但是当我尝试在设备--->电脑中传输文件时出现错误
我把我的代码放在解释之后。
jusbpmp 但我无法转移设备 ---> 计算机。
USB Host/accesory 没有用,因为传输是从桌面应用程序启动的,当我在 android 开发者指南网站上阅读时, 它似乎不符合我的需要,或者如果用户开始从设备传输。
我尝试了 1 周才成功完成这项任务,但似乎我需要帮助。
Java + jMTP代码
private static void jMTPeMethode()
{
PortableDeviceManager manager = new PortableDeviceManager();
PortableDevice device = manager.getDevices()[0];
// Connect to USB tablet
device.open();
System.out.println(device.getModel());
System.out.println("---------------");
// Iterate over deviceObjects
for (PortableDeviceObject object : device.getRootObjects())
{
// If the object is a storage object
if (object instanceof PortableDeviceStorageObject)
{
PortableDeviceStorageObject storage = (PortableDeviceStorageObject) object;
for (PortableDeviceObject o2 : storage.getChildObjects())
{
if(o2.getOriginalFileName().equalsIgnoreCase("Test"))
{
//Device to computer not working
PortableDeviceToHostImpl32 copy = new PortableDeviceToHostImpl32();
try
{
copy.copyFromPortableDeviceToHost(o2.getID(), "C:\TransferTest", device);
} catch (COMException ex)
{
}
// //Host to Device working
// BigInteger bigInteger1 = new BigInteger("123456789");
// File file = new File("c:/GettingJMTP.pdf");
// try {
// storage.addAudioObject(file, "jj", "jj", bigInteger1);
// } catch (Exception e) {
// //System.out.println("Exception e = " + e);
// }
}
System.out.println(o2.getOriginalFileName());
}
}
}
manager.getDevices()[0].close();
}
这是代码和错误的结果
`
Nexus 9
---------------
Music
Podcasts
Ringtones
Alarms
Notifications
Pictures
Movies
Download
DCIM
Android
! Failed to get IStream (representing object data on the device) from IPortableDeviceResources, hr = 0x80070057
test
ReleveData
`
我在网上看到 0x80070057 是一个通用的 windows 异常。
编辑:
Windows site say 表示 hr 错误
ERROR_INVALID_PARAMETER 0x80070057 :
应用程序提供的参数无效。
但是我没看到参数无效
这里是link of C class的库,用于将数据设备传输到计算机,你可以看到我的错误行230。
这是我使用的 jMTP 库。
你能帮我吗,或者用另一种方式来做我需要的(Usb4Java,libUSB)?不胜感激
提前致谢。
好的,我找到问题了。
问题来自 o2.getID()
给方法 copy.copyFromPortableDeviceToHost
的参数。
因为o2
代表的是文件夹,而不是文件夹中的文件,所以无法发送文件夹,为了成功,我需要发送文件夹中的文件。
所以我将 PortableDeviceObject
o2 转换为 PortableDeviceFolderObject
,以便在 PortableDeviceFolderObject
中获得一个子对象列表,其中 targetFolder.getChildObjects()
表示文件',然后我可以迭代文件夹中的任何子对象。
并且对于每个文件,我都使用正确的 ID 调用方法 copy.copyFromPortableDeviceToHost
。
这是更正代码,copy/transfer文件从计算机到设备和设备到计算机。
希望对您有所帮助。
public class USBTransfertMain {
public static void main(String[] args) throws Throwable {
jMTPeMethode();
}
private static void jMTPeMethode()
{
PortableDeviceFolderObject targetFolder = null;
PortableDeviceManager manager = new PortableDeviceManager();
PortableDevice device = manager.getDevices()[0];
// Connect to USB tablet
device.open();
System.out.println(device.getModel());
System.out.println("---------------");
// Iterate over deviceObjects
for (PortableDeviceObject object : device.getRootObjects())
{
// If the object is a storage object
if (object instanceof PortableDeviceStorageObject)
{
PortableDeviceStorageObject storage = (PortableDeviceStorageObject) object;
for (PortableDeviceObject o2 : storage.getChildObjects())
{
if(o2.getOriginalFileName().equalsIgnoreCase("testFolder"))
{
targetFolder = (PortableDeviceFolderObject) o2;
}
System.out.println(o2.getOriginalFileName());
}
copyFileFromComputerToDeviceFolder(targetFolder);
PortableDeviceObject[] folderFiles = targetFolder.getChildObjects();
for (PortableDeviceObject pDO : folderFiles) {
copyFileFromDeviceToComputerFolder(pDO, device);
}
}
}
manager.getDevices()[0].close();
}
private static void copyFileFromDeviceToComputerFolder(PortableDeviceObject pDO, PortableDevice device)
{
PortableDeviceToHostImpl32 copy = new PortableDeviceToHostImpl32();
try {
copy.copyFromPortableDeviceToHost(pDO.getID(), "C:\TransferTest", device);
} catch (COMException ex) {
ex.printStackTrace();
}
}
private static void copyFileFromComputerToDeviceFolder(PortableDeviceFolderObject targetFolder)
{
BigInteger bigInteger1 = new BigInteger("123456789");
File file = new File("C:\GettingJMTP.pdf");
try {
targetFolder.addAudioObject(file, "jj", "jj", bigInteger1);
} catch (Exception e) {
System.out.println("Exception e = " + e);
}
}
}
我有一个桌面 java 应用程序,还有一个 android 应用程序。两个应用协同工作。
桌面应用程序中的用户有一个按钮可以启动设备数据应用程序与计算机应用程序之间的传输,反之亦然。
所以我需要使用简单的 USB 数据线传输数据,并且没有互联网 connection/WiFi/Bluetooth/adb。
我找到了两个 Java MTP 库,可以在 Windows 上使用来解决我的问题,以及 android 的 USB Host/accesory 功能:
jMTP 成功识别了我的 Android 设备、文件夹和其他东西
我在电脑--->设备中传输文件成功,但是当我尝试在设备--->电脑中传输文件时出现错误
我把我的代码放在解释之后。
jusbpmp 但我无法转移设备 ---> 计算机。
USB Host/accesory 没有用,因为传输是从桌面应用程序启动的,当我在 android 开发者指南网站上阅读时, 它似乎不符合我的需要,或者如果用户开始从设备传输。
我尝试了 1 周才成功完成这项任务,但似乎我需要帮助。
Java + jMTP代码
private static void jMTPeMethode()
{
PortableDeviceManager manager = new PortableDeviceManager();
PortableDevice device = manager.getDevices()[0];
// Connect to USB tablet
device.open();
System.out.println(device.getModel());
System.out.println("---------------");
// Iterate over deviceObjects
for (PortableDeviceObject object : device.getRootObjects())
{
// If the object is a storage object
if (object instanceof PortableDeviceStorageObject)
{
PortableDeviceStorageObject storage = (PortableDeviceStorageObject) object;
for (PortableDeviceObject o2 : storage.getChildObjects())
{
if(o2.getOriginalFileName().equalsIgnoreCase("Test"))
{
//Device to computer not working
PortableDeviceToHostImpl32 copy = new PortableDeviceToHostImpl32();
try
{
copy.copyFromPortableDeviceToHost(o2.getID(), "C:\TransferTest", device);
} catch (COMException ex)
{
}
// //Host to Device working
// BigInteger bigInteger1 = new BigInteger("123456789");
// File file = new File("c:/GettingJMTP.pdf");
// try {
// storage.addAudioObject(file, "jj", "jj", bigInteger1);
// } catch (Exception e) {
// //System.out.println("Exception e = " + e);
// }
}
System.out.println(o2.getOriginalFileName());
}
}
}
manager.getDevices()[0].close();
}
这是代码和错误的结果
`
Nexus 9
---------------
Music
Podcasts
Ringtones
Alarms
Notifications
Pictures
Movies
Download
DCIM
Android
! Failed to get IStream (representing object data on the device) from IPortableDeviceResources, hr = 0x80070057
test
ReleveData
`
我在网上看到 0x80070057 是一个通用的 windows 异常。
编辑:
Windows site say 表示 hr 错误 ERROR_INVALID_PARAMETER 0x80070057 : 应用程序提供的参数无效。
但是我没看到参数无效
这里是link of C class的库,用于将数据设备传输到计算机,你可以看到我的错误行230。
这是我使用的 jMTP 库。
你能帮我吗,或者用另一种方式来做我需要的(Usb4Java,libUSB)?不胜感激
提前致谢。
好的,我找到问题了。
问题来自 o2.getID()
给方法 copy.copyFromPortableDeviceToHost
的参数。
因为o2
代表的是文件夹,而不是文件夹中的文件,所以无法发送文件夹,为了成功,我需要发送文件夹中的文件。
所以我将 PortableDeviceObject
o2 转换为 PortableDeviceFolderObject
,以便在 PortableDeviceFolderObject
中获得一个子对象列表,其中 targetFolder.getChildObjects()
表示文件',然后我可以迭代文件夹中的任何子对象。
并且对于每个文件,我都使用正确的 ID 调用方法 copy.copyFromPortableDeviceToHost
。
这是更正代码,copy/transfer文件从计算机到设备和设备到计算机。
希望对您有所帮助。
public class USBTransfertMain {
public static void main(String[] args) throws Throwable {
jMTPeMethode();
}
private static void jMTPeMethode()
{
PortableDeviceFolderObject targetFolder = null;
PortableDeviceManager manager = new PortableDeviceManager();
PortableDevice device = manager.getDevices()[0];
// Connect to USB tablet
device.open();
System.out.println(device.getModel());
System.out.println("---------------");
// Iterate over deviceObjects
for (PortableDeviceObject object : device.getRootObjects())
{
// If the object is a storage object
if (object instanceof PortableDeviceStorageObject)
{
PortableDeviceStorageObject storage = (PortableDeviceStorageObject) object;
for (PortableDeviceObject o2 : storage.getChildObjects())
{
if(o2.getOriginalFileName().equalsIgnoreCase("testFolder"))
{
targetFolder = (PortableDeviceFolderObject) o2;
}
System.out.println(o2.getOriginalFileName());
}
copyFileFromComputerToDeviceFolder(targetFolder);
PortableDeviceObject[] folderFiles = targetFolder.getChildObjects();
for (PortableDeviceObject pDO : folderFiles) {
copyFileFromDeviceToComputerFolder(pDO, device);
}
}
}
manager.getDevices()[0].close();
}
private static void copyFileFromDeviceToComputerFolder(PortableDeviceObject pDO, PortableDevice device)
{
PortableDeviceToHostImpl32 copy = new PortableDeviceToHostImpl32();
try {
copy.copyFromPortableDeviceToHost(pDO.getID(), "C:\TransferTest", device);
} catch (COMException ex) {
ex.printStackTrace();
}
}
private static void copyFileFromComputerToDeviceFolder(PortableDeviceFolderObject targetFolder)
{
BigInteger bigInteger1 = new BigInteger("123456789");
File file = new File("C:\GettingJMTP.pdf");
try {
targetFolder.addAudioObject(file, "jj", "jj", bigInteger1);
} catch (Exception e) {
System.out.println("Exception e = " + e);
}
}
}