Convert InputStream to BufferedReader in Java

Note The BufferedReader reads characters; while the InputStream is a stream of bytes. The BufferedReader can’t read the InputStream directly; So, we need to use an adapter like InputStreamReader to convert bytes to characters format. For example: // BufferedReader -> InputStreamReader -> InputStream BufferedReader br = new BufferedReader( new InputStreamReader(inputStream, StandardCharsets.UTF_8)); 1. Reads a file …

Read more

CloudFlare + WordPress admin, Cache issue

Below is my website environment : WordPress 3.8.1 CloudFlare Pro Plan 1. Problem I’m unable to login WordPress after changing my custom DNS to CloudFlare, below is the error message : ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress P.S The browser’s cookies are enabled. Here’s …

Read more