Search:

Type: Posts; User: upfish

Search: Search took 0.07 seconds.

  1. Replies
    1
    Views
    7,004

    Re: Linking Java to a website for android app

    You would need to add this to the button event:

    String url = "www.wherever.com"
    java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));


    That SHOULD open up the url in the default...
  2. Replies
    3
    Views
    2,793

    Re: Hey looking for tutor/teacher if possible

    I wouldn't mind helping you out! I'll shoot you a mesage.
  3. Replies
    3
    Views
    1,154

    Re: How can I export elements in array to .xhtml

    Here's what is BASICALLY the problem:
    You're having topping point to the array itself, not the items inside of it. Instead of calling indexBean.selectedToppingNames try making a method within your...
  4. Replies
    1
    Views
    6,114

    Re: Display database values into JTables

    Try making a JList out of the model you get from that DbUtils, then use that JList in your setModel.

    For example:

    JList myList = new JList(DbUtils.resultSetToTableModel(rs));...
  5. Re: Get current logged on username - Microsoft Windows

    What exactly do you need it for? Depending on what you're trying to do there may be other workarounds. For instance, %USERNAME% MIGHT work if you're trying to find a file. Otherwise there are other...
  6. Thread: Howdy

    by upfish
    Replies
    1
    Views
    1,082

    Howdy

    I'm mostly here to see where I can help. Howdy!
Results 1 to 6 of 6