0
votes
1answer
23 views

about download a file by java drive api

I use the "get" method from java drive api, and I can get the inputstream. but I cannt open the file when I use the inputstream to creat it. It likes the file is broken. private static String fileurl ...
0
votes
0answers
62 views

Download Documents using google drive api (JAVA)

I am quite new to this whole topic of using drive and its api I think I might need some help and introduction. It's about Google Apps for business So, here we go: I want a java application do ...
0
votes
0answers
130 views

Can't understand how to use Drive API

I'm trying to implement Google Drive functionality in our application and in stuck with such problem: using this code try { // File's binary content java.io.File fileContent = new ...
0
votes
1answer
89 views

Applet for opening a file on a local machine but save in a cloud drive

I've seen an applet that will allow you to click on a file on a cloud drive (i.e on a web page), it then opens the file locally with the relevant app, and when you click save, the file is saved to the ...
1
vote
2answers
254 views

google drive dredit error java.lang.NoSuchMethodError: com.google.api.client.http.HttpRequestFactory.buildRequest

Trying to run the Google drive sample I always get the error explained below. I checked the configuration and it looks correct. Last releases of appengine eclipse plugin is been used. The error ...
0
votes
0answers
166 views

How to configure internet proxy to access to google services?

I am testing a application that uses Google Drive. Because there is a proxy, the application throws a time out exception. I have searched in google how to configure a proxy, but I could not found ...
0
votes
1answer
375 views

Google Drive API - Creates Duplicate Folders

I am developing a JAVA program that will upload documents to Google Drive. I founf that if I try to upload to an existing folder, thatI have to make sure that it is case sensitive to the existing ...
0
votes
1answer
92 views

Get the drive program is running on in Mac

I would like to find out the root of the drive that my Java application is running on in Mac. I have it working on Windows with the following code but I don't know how to make it work on OSx too: // ...
4
votes
3answers
2k views

Java: how to determine the type of drive a file is located on?

Is there a platform-independent way with Java to detect the type of drive a file is located on? Basically I'm interested to distinguish between: hard disks, removable drives (like USB sticks) and ...
0
votes
1answer
319 views

How can I create a virtual disk (letter, share, etc.) on Windows using Java?

I'm looking at trying a project for class and as part of it I will need to create a "disk" to allow users to write some files (e.g. a RAM disk). I've used various languages, but I'm most familiar with ...
1
vote
3answers
935 views

JFileChooser - Starting at the 'Computer' e.g. C: D: E: drives

fileChooser.setCurrentDirectory(new java.io.File("C:\\")); Hi there, I'm trying to add the finishing touches to an application I've been developing and I'd really like it so my fileChooser sets the ...
2
votes
1answer
263 views

JFileChooser - Not browsing through the 'Mounted Drives' in windows server 2008 machine

I use JFileChooser in one of my java tool to browse file locations. It has a problem in browsing into the mounted drives - We can just chose the mounted drive but cannot go to next level/open and ...
3
votes
2answers
1k views

How can I mount network drive in Mac OS X on Java?

I am writing a programme on JBuider 2005 on Windows XP platform for Mac OS X. Programme must launch on Mac OS X and programme turnes(directs) to share folders on other computer(Windows XP) in network. ...
0
votes
3answers
129 views

Copy external HDD

I want to write an app. (web-based if possible) to copy an external HDD (already partitioned and containing data) to a like HDD with the same partitions-- does anyone think this would be possible with ...
4
votes
8answers
3k views

How to access specific raw data on disk from java

I'm trying to use the following code to access one byte with offset of 50 bytes in a raw disk. randomAccessFile = new RandomAccessFile("C:", "r"); randomAccessFile.seek(50); byte[] buffer = new ...
1
vote
3answers
4k views

when getting drive information using java

i tried the following program import java.io.*; class dr { public static void main(String args[]) { try{ File[] roots = File.listRoots(); for (int index ...
0
votes
3answers
1k views

Get Drive Size in Java 5

I want to get the size of a drive (or UNC path pointing to a partition would be nice, but not required), as well as free space for said drive (or UNC path). This doesn't need to work cross platform; ...