Skip to content

Instantly share code, notes, and snippets.

View Eng3l's full-sized avatar
🤘
Ready to rock

Angel Sánchez Eng3l

🤘
Ready to rock
View GitHub Profile
@Eng3l
Eng3l / FileClient.java
Last active December 31, 2016 15:57 — forked from CarlEkerot/FileClient.java
Simple java file transfer
package client;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.Socket;
public class FileClient {
private Socket s;