Posts by Memphys • 106 points
4 posts
-
1
votes1
answer221
viewsA: How to reset Inputstream
Hello, in the Inputstream there are two methods to this: mark(int readLimit) - Do what the name says, mark a point on the file. reset() - Reset exactly to the point marked by the above method. I…
-
1
votes2
answers284
views -
0
votes1
answer70
viewsA: Syntax error on token "123", invalid Variabledeclaratorid
These variables in the static and final class drawable within the class R are references to files of the same name in the folder res/drawable of your project. Make sure you have no file named 123 in…
-
4
votes1
answer99
viewsA: Why is it that when I change the size of the window, the components are gone?
The components are disappearing as they are only being added and painted once on Jpanel, but there is the callback of the method paint(Graphics g), which is always called when it is necessary to…