I have a html file stored on the server. I have the URL path something like this:
I want to rea
import java.net.*; import java.io.*; //... URL url = new URL("https://localhost:9443/genesis/Receipt/Receipt.html"); url.openConnection(); InputStream reader = url.openStream();