i am facing these error tried a lot to replace >>
guava-##.jar<< all kind of version which is available in Web all i tried ......
please provide some solution what i need to do .... same code sam project copy if i am using in different machine it's creating problem......
......///////////Please give me any solution
Credential credential = getCredentials();
System.out.println("here");
SpreadsheetService service = new SpreadsheetService("spreadsheet"); //// here is the problem <<<<<<<<<<<<<with above capture
service.setOAuth2Credentials(credential);
// Define the URL to request. This should never change.
URL SPREADSHEET_FEED_URL = new URL("
https://spreadsheets.google.com/feeds/spreadsheets/private/full");
// Make a request to the API and get all spreadsheets.
SpreadsheetFeed feed = service.getFeed(SPREADSHEET_FEED_URL, SpreadsheetFeed.class);
List<SpreadsheetEntry> spreadsheets = feed.getEntries();
// Iterate through all of the spreadsheets returned
for (SpreadsheetEntry spreadsheet : spreadsheets) {
// Print the title of this spreadsheet to the screen
System.out.println(spreadsheet.getTitle().getPlainText());
System.out.println(spreadsheet.getHtmlLink().toString());