Captcha is fixed, and registration is working again

Basic JASM Commands

Ryelow
Ryelow
Nov 14, 2018
(more info)
https://pastebin.com/BQGXx89W - Java code for the Compiler

oh yeah and subscribe
Category:
More From: Ryelow
Related Videos
0:33
What I am doing
What I am doing 49 views
0:21
Subscribe to TBG
Subscribe to TBG 17 views
0:07
Subscribe👍
Subscribe👍 32 views
0:14
subscribe
subscribe 55 views
0:03
subscribe
subscribe 24 views
0:09
subscribe pls
subscribe pls 53 views
0:09
100 Subscribe
100 Subscribe 39 views
0:05
subscribe
subscribe 26 views
0:03
How to subscribe
How to subscribe 56 views
1 rating
59 views
Want to add this video to your favorites?
Sign in to VidLii now!
Want to add this video to your playlists?
Sign in to VidLii now!
Want to flag this video?
Sign in to VidLii now!
Video Responses (0) Sign in to make a video response
This video doesn't have any video responses!
Text Comments (1) Sign in to post a comment
TehHacksSparta (5 years ago)
TehHacksSparta
1
// sorry for the improper indenting, i copied this from my source

private void write(String file, char[] Data) throws FileNotFoundException {
String filename = file;

FileOutputStream fos = null;
DataOutputStream dos = null;

try {

fos = new FileOutputStream(filename);

dos = new DataOutputStream(fos);

for(char d : Data) {
dos.writeChar(d);
}

}
catch (FileNotFoundException fnfe) {
System.out.println("File not found" + fnfe);
}
catch (IOException ioe) {
System.out.println("Error while writing to file" + ioe);
}
finally {
try {
if (dos != null) {
dos.close();
}
if (fos != null) {
fos.close();
}
}
catch (Exception e) {
Sign up for a free account, or sign in to post a comment.
Date: Nov 14, 2018 Views: 59 Ratings: 1
Time: Comments: 1 Favorites: 1