1: …… 2: String getPassword() { 3: return "secret"; 4: } 5: 6: void foo() { 7: try { 8: Socket socket = new Socket("taranis", 4444); 9: PrintWriter out = new PrintWriter(socket.getOutputStream(), true); 10: String password = getPassword(); 11: out.write(password); 12: } catch (FileNotFoundException e) { 13: …… 14: }