escape characters in response header location url javascript code example
Example 1: header location in php
/*
This will just redirect you to example.com
*/
<?php
$url = "https://example.com";
header("Location: $url");
exit;
?>
/* I hope it will help you. Namaste */
Example 2: java download file from url to string
public static String URLReader(URL url) throws IOException {
StringBuilder sb = new StringBuilder();
String line;
InputStream in = url.openStream();
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
while ((line = reader.readLine()) != null) {
sb.append(line).append(System.lineSeparator());
}
} finally {
in.close();
}
return sb.toString();
}