Search:

Type: Posts; User: Kanyon

Search: Search took 0.21 seconds.

  1. Replies
    5
    Views
    2,757

    Re: Make TAR archive

    I don't think you understand. I want to make Tar archives straight from the system data.

    Anyway, I decided to just deal with the 2GB file size limit. If anyone wants it, here is my code:


    ...
  2. Replies
    5
    Views
    2,757

    Re: Make TAR archive

    I'm not looking for how to make Zip archives, I'm trying to make Tar archives.
  3. Replies
    5
    Views
    2,757

    Make TAR archive

    Hi. I am trying to make a program that creates Tar archives. Can someone help me out with this?

    First, I was using an API called "Apache Commons Compress". The only problem with this, is that it...
  4. Replies
    0
    Views
    1,411

    Making Debian Archives

    Hi. I am trying to make a Debian archive in Java. I have found several things, but don't know how to use them. The one I would like to use is called JDeb. Here is the GitHub page. Can anyone tell me...
  5. Replies
    13
    Views
    2,527

    [SOLVED] Re: "If" statement not working

    Okay, I have no idea what that means :P
  6. Replies
    13
    Views
    2,527

    [SOLVED] Re: "If" statement not working

    In the code above, I have the Radiobuttons declared as class-wide variables. For some reason, I cannot set their checked value from a sub that they weren't added to the JFrame. This has something to...
  7. Replies
    13
    Views
    2,527

    [SOLVED] Re: "If" statement not working

    Oh, nevermind. That is a rather big error that should go in a separate thread. Thanks for the help!
  8. Replies
    13
    Views
    2,527

    [SOLVED] Re: "If" statement not working

    Would the Radiobuttons not changing have anything to do with being declared as Static? They are. Here is my entire edit class:



    import java.awt.BorderLayout;
    import java.awt.Color;
    import...
  9. Replies
    13
    Views
    2,527

    [SOLVED] Re: "If" statement not working

    Okay, thank you. That seemed to work. I didn't notice it because the RadioButtons don't change value for some reason. Thanks for your help though!!!
  10. Replies
    13
    Views
    2,527

    [SOLVED] Re: "If" statement not working

    so, like this?:

    if(temp.equals("Red") == true){

    }
  11. Replies
    13
    Views
    2,527

    [SOLVED] Re: "If" statement not working

    public static void setup(){
    String message;
    String colour;
    String movement;
    String original;
    String temp = new String();
    int count;
    boolean colourbool = false;
    boolean...
  12. Replies
    13
    Views
    2,527

    [SOLVED] "If" statement not working

    Hi. I have an if statement that checks if a string matches the title of a radiobutton. If it does, it sets the radiobutton's selectedValue to true. If not, it disregards the string and puts it into a...
  13. Thread: Robot Exception

    by Kanyon
    Replies
    7
    Views
    6,425

    [SOLVED] Re: Robot Exception

    Oh, I'm sorry, you were right. I don't know where that exception came from, but it's gone now. Anyway, the problem is solved. I guess it can only type keys that don't require a modifier. Adding the...
  14. Thread: Robot Exception

    by Kanyon
    Replies
    7
    Views
    6,425

    [SOLVED] Re: Robot Exception

    Hmmm. I'll have to take a closer look at it.
  15. Thread: Robot Exception

    by Kanyon
    Replies
    7
    Views
    6,425

    [SOLVED] Re: Robot Exception

    Yes, I have tried this. I get the same error when typing the parentheses, or any other symbol for that matter, with the shift key being held.
  16. Thread: Robot Exception

    by Kanyon
    Replies
    7
    Views
    6,425

    [SOLVED] Re: Robot Exception

    Yes, I couldn't find an event in KeyEvent for the parentheses, so the robot holds shift and presses 5 to write it. What about it, though?
  17. Thread: Robot Exception

    by Kanyon
    Replies
    7
    Views
    6,425

    [SOLVED] Robot Exception

    Hi. I've made a program that automatically types for the user. The user types in what he/she wants the program to type, and the program just repeats typing over and over. Now this works fine with...
  18. [SOLVED] Re: Menus appear behind AWT List when spinner is focused

    Ah, thank you SO MUCH! That article helped me learn a ton about Swing an AWT. I solved my problem by adding this:



    public void initialize(){...
  19. [SOLVED] Menus appear behind AWT List when spinner is focused

    Hi. I have a JFrame with several components. It has a menu at the top, which works fine until a spinner is clicked. The spinner is inside a panel if it helps. When the spinner is interacted with, the...
Results 1 to 19 of 19