I'm working in a University project. My situation is very simple, I think: I take data from a table in local machine with this code on my Servlet:
BufferedReader br = new BufferedReader(new FileReader(new File("C:\\fileName.csv")));
Now, I want to take a step beyond: I want to read data from an external link in which there is a table (I created the link with Google Fusion Tables and it contains the identical data of my 'fileName.csv' in local machine).
How can I solve this?
Thank so so much to who will answer!