We moved to a new server. We lost a few hours of data from July 2nd, we apologize.
New backup domain is on the Help page. Email is fixed!

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:16
thanks for 5 subscribe
0:29
50 Subscribers!
50 Subscribers! 104 views
5:48
700 Subscriber Q and A
1:28
you subscribed :D
0:15
100 Subscribers!
100 Subscribers! 1,736 views
0:45
666 Subscribers
666 Subscribers 142 views
1:09
69 SUBSCRIBERS!!
69 SUBSCRIBERS!! 90 views
0:25
15 subscriber!
15 subscriber! 44 views
0:06
20 Subscriber
20 Subscriber 78 views
0:06
Subscribe to my channel
1 rating
62 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 (6 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: 62 Ratings: 1
Time: Comments: 1 Favorites: 1