Search:

Type: Posts; User: isuru

Search: Search took 0.10 seconds.

  1. Thread: Exception

    by isuru
    Replies
    5
    Views
    2,150

    Re: Exception

    Google is your friend...
  2. Replies
    7
    Views
    3,202

    Re: Is memory editing is possible using JAVA?

    Well, I don't think Java is the best language for that, but as I see the problem there is one option. Call C++ by Java.

    Java Tip 17: Integrating Java with C++ - JavaWorld
  3. Replies
    1
    Views
    1,399

    Re: how get good java job

    First join some open source projects. And build up your resume.
  4. Replies
    9
    Views
    6,711

    Re: Best web host for Java EE

    Did you have to add credit card for sign up?
  5. Replies
    9
    Views
    6,711

    Re: Best web host for Java EE

    Did you try jelastic. So far they are the best. Google app engine is good, but it's so restrictive.
  6. Thread: Hi all

    by isuru
    Replies
    2
    Views
    906

    Re: Hi all

    Welcome to the forum!
  7. Replies
    1
    Views
    2,607

    Android ProgressBar with threads

    I am working on ProgressBar class in android, but I can't make it progress through 5 seconds and load the application. Everything works but the progress bar not progressing. Here is the code.

    ...
  8. Replies
    3
    Views
    3,050

    Re: need help getting webcam input to a JFrame

    And did you try this? GT's Blog: JavaCV capture-save-flip-show live camera
  9. Replies
    3
    Views
    3,050

    Re: need help getting webcam input to a JFrame

    No, post what you have so far. So we can try it ourselves.
  10. Replies
    4
    Views
    1,317

    Re: Can someone help me with this please?

    Is this you looking for?
    ...
  11. Re: Sending data from a computer to a server autonomously(spelling?)

    Here is a simple tutorial on how to do that.

    A Simple Java TCP Server and TCP Client | systemBash

    And I think that is what you looking for, and one another thing, you must always start server...
  12. Thread: Hello everyone

    by isuru
    Replies
    3
    Views
    981

    Re: Hello everyone

    Welcome to Future!
  13. Thread: MediaPlayer.

    by isuru
    Replies
    4
    Views
    2,021

    Re: MediaPlayer.

    First set the layout file


    setContentView(R.layout.menu_screen);
    MediaPlayer mp = MediaPlayer.create(this, R.raw.background_song);
    mp.setLooping(true);
    mp.start();
  14. Replies
    0
    Views
    1,414

    Cannot Write to the file

    <%--
    Document : index
    Created on : Jul 12, 2011, 11:55:58 AM
    Author : ztron
    --%>

    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <!DOCTYPE html>
    <html>
    <head>
  15. Replies
    3
    Views
    1,894

    Re: Pls guide me in advance java

    It depends. If I were you I choose JSP, JSF, GWT and Google App Engine for the project. JSP is lot more like PHP. And there are other technologies like Spring. You must learn more. It is so easy if...
  16. Thread: Link Grabber

    by isuru
    Replies
    2
    Views
    2,303

    Link Grabber

    I created this program which grabs all <img> links in a single html file. But I can't get it work.

    /*
    * To change this template, choose Tools | Templates
    * and open the template in the...
  17. Replies
    3
    Views
    10,379

    Re: Overwriting txt file

    FileWriter

    The FileWriter is a class used for writing character files. The constructors of this class assume that the default character encoding and the default byte-buffer size are acceptable....
  18. Replies
    3
    Views
    3,796

    Re: Adding array elements inside a loop

    That loop works only inside for loop. You can't do it out-side of the for block.
Results 1 to 18 of 18