I receviced an error: java.net.MalformedURLException: Protocol not found
I want to read an HTML file on the web
mainfest ::::: uses-pe
String myUri = "";
myUri = "www.tcmb.gov.tr/kurlar/today.html";
your uri is not completed.you can write complete url just like as.
String myUri="https://www.tcmb.gov.tr/kurlar/today.html";
Your URI is not a URI. There is no protocol component. It needs http:// or whatever other protocol you intend.