13.07.2015 Views

Java – programowanie sieciowe - Koszalin

Java – programowanie sieciowe - Koszalin

Java – programowanie sieciowe - Koszalin

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Klasa URLConnectionCzytanie danych:URL url = new URL("http://…");URLConnection uc = url.openConnection();InputStream is = uc.getInputStream();Pisanie danych:URL url = new URL("http://…");URLConnection uc = url.openConnection();uc.setDoOutput();InputStream is = uc.getInputStream();OutputStream is = uc.getOutputStream();

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!