Search:

Type: Posts; User: 0w1

Search: Search took 0.11 seconds.

  1. Replies
    1
    Views
    1,146

    Executing Commands read from File

    Say I read the following line in from a text file:
    arrayRecords[y].getPlotNo()

    How would I execute it as a java command?
  2. Replies
    0
    Views
    1,113

    Variable Parameter Amount Constructor

    I'm trying to create a program that automates the normalisation process for RDMSs but I've hit a plateau when compiling code that is trying to handle creating objects for a constructor that has yet...
  3. Thread: Shutdown Timer

    by 0w1
    Replies
    2
    Views
    1,071

    Re: Shutdown Timer

    Thanks but the code's going all screwy, looks like I'll just have to leave the timer out.
  4. Thread: Shutdown Timer

    by 0w1
    Replies
    2
    Views
    1,071

    Shutdown Timer

    Using the following code how would I start the timer when the button is clicked and how would I set the timer with the input time?



    import java.awt.*;
    import java.awt.event.*;
    import...
  5. Replies
    4
    Views
    14,376

    Limiting Letters in a String

    Why is this code letting me enter a password such as a123?




    System.out.println("\nEnter new password:");
    strPasswordTemp = input.next();
    ...
  6. Thread: AES-256

    by 0w1
    Replies
    0
    Views
    921

    AES-256

    Does anyone know of an AES-256 encryption class sourcecode that can be called upon using encryptionClass.encrypt(inputFile.txt, outputFIle.txt, key) and encryptionClass.decrypt(inputFile.txt,...
  7. Thread: Password Inputs

    by 0w1
    Replies
    1
    Views
    995

    Password Inputs

    Is there a way to mask the characters being entered by the user with asterisks? (using a CLI in an IDE)
  8. Thread: Login bug

    by 0w1
    Replies
    0
    Views
    1,306

    Login bug

    Doesn't matter fixed the bug, is there any way to delete a post/thread?
  9. Thread: Encryption

    by 0w1
    Replies
    1
    Views
    1,150

    Re: Encryption

    How do I use this code with a fixed key instead of a generated key?



    public static void main(String[] args) throws Exception {

    Security.addProvider(new FlexiCoreProvider());

    Cipher...
  10. Thread: Encryption

    by 0w1
    Replies
    1
    Views
    1,150

    Encryption

    I'm currently struggling on sealing objects for an inherited class and was wondering if anyone here could help.
  11. Replies
    0
    Views
    1,165

    Encrypt external file using 256bit AES

    Hey can someone link me to code that can easily be called upon to encrypt/decrypt external files using 256bit AES.
    Like the following but not DES:
    Encrypting and Decrypting a file ~ Java Code House
  12. Replies
    1
    Views
    1,627

    [SOLVED] Re: Object Array Serialization Encryption

    Encrypted/decrypted the external serial file instead.
  13. Replies
    1
    Views
    1,627

    [SOLVED] Object Array Serialization Encryption

    [SOLVED].
  14. Replies
    0
    Views
    1,230

    setImageIcon not working

    My image is in the source folder and has a resolution of 32x32 but it still won't change the frame icon.



    package pkgCarInsuranceCalc;

    // imports
    import javax.swing.*;

    public class Run
  15. Replies
    0
    Views
    1,084

    JLabel text on second frame

    Why is my instructions JLabel not displaying properly? The text either stays horizontal or turns into a narrow column. Can someone help me solve this issue please?




    package...
  16. Thread: cmd java run issue

    by 0w1
    Replies
    2
    Views
    1,311

    Re: cmd java run issue

    I was used javac CarInsuranceCalc.java

    Then java CarInsuranceCalc

    I just tried java pkgCarInsuranceCalc.CarInsuranceCalc

    Now I'm receiving the following:

    Error: Could not find or load...
  17. Thread: cmd java run issue

    by 0w1
    Replies
    2
    Views
    1,311

    cmd java run issue

    When I compile my java application in NetBeans there's no problem but when I try to run my application through the command prompt I get the following error:

    Exception in thread "main"...
  18. Thread: JCombobox Warnings

    by 0w1
    Replies
    1
    Views
    1,232

    JCombobox Warnings

    When I was compiling and running my program yesterday I wasn't receiving any warnings then when I compile and run it today I'm now receiving warnings, can someone help me solve this problem, I have...
Results 1 to 18 of 19