Enviar arquivos para "/"

This commit is contained in:
ParanormalActivity 2023-11-19 10:26:51 +02:00
parent d765149942
commit c34f96a7d5
3 changed files with 19 additions and 0 deletions

1
bad_isp Normal file
View File

@ -0,0 +1 @@
¤test¥test2

1
bad_words Normal file
View File

@ -0,0 +1 @@
¤test¥test2

17
msgpack.java Normal file
View File

@ -0,0 +1,17 @@
import java.io.*;
import org.msgpack.MessagePack;
public class MsgPack {
public static void main(String[] args) {
initialFile = new File("bad_words"); // or bad_isp
List<String> al = new ArrayList<String>();
try (OutputStream outputStream = new FileOutputStream(initialFile)) {
al.add(0, "test");
al.add(1, "test2");
mp.write(outputStream, al);
} catch (IOException e) {
e.printStackTrace();
}
}
}