I have this GWT code that opens a new browser window to show a text file.
Window.open("data:text/plain;base64," + Base64.byteArrayToBase64(textBytes), "_blank", "");
My questions are:
- How long is the maximum URL part that a browser can handle?
- And what is the maximum bytes that this code will be able to handle properly?