Comments
-
I should highlight also that I'm not trying to focus on the GUI question I am having success with that portion its just simply this bit of code hanging me up... public void uploadFile() throws FileNotFoundException, DbxException, IOException{ fc = new JFileChooser(); fc.setMultiSelectionEnabled(true);…
-
Thanks for the response Gregory, Yes, I am having troubles in context of the actual file upload method. The main guts of the program; user logging into dropbox and getting a access link etc. is working and connecting fine with no problems but when the upload method is executed I am getting errors (posted below this reply)…
-
SOLVED File selectedFile = new File(nameOf+inputFile); inputStream = new FileInputStream(inputFile); uploadedFile = client.uploadFile( "/" +selectedFile ,DbxWriteMode.add(), inputFile.length(), inputStream); System.out.println("Uploaded: " + uploadedFile.toString());
-
I Know it's a little old but do you know how to create a similar method for the java core API? Ive been trying to use different methods to store the accessToken with no success...Any help or recommendation on what you guys did for you App would be appreciated, thank you!