src/main/java/com/awsblog/queueing/utils/FileUtils.java [56:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			int result = bis.read();
			
			while(result != -1) {
				buf.write((byte) result);
				result = bis.read();
			}
			
			buf.close();
			
			// StandardCharsets.UTF_8.name() > JDK 7
			return buf.toString(StandardCharsets.UTF_8.name());
			
		} catch (IOException e) {
			e.printStackTrace();
		} 

		return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/awsblog/queueing/utils/FileUtils.java [131:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			int result = bis.read();
			while(result != -1) {
				buf.write((byte) result);
				result = bis.read();
			}
			
			buf.close();
			
			// StandardCharsets.UTF_8.name() > JDK 7
			return buf.toString(StandardCharsets.UTF_8.name());
			
		} catch (IOException e) {
			e.printStackTrace();
		}

		return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



