Results 1 to 7 of 7

Thread: แปลง string เป็น integerใน JAVA

  1. #1
    Junior Member
    Join Date
    Dec 2006
    Posts
    0


    แปลง string เป็น integerใน JAVA

    ใช้คำสั่งอะไรครับ คือมีปัญหาในการเขียนโปรแกรมเพราะถ้า ไม่แปลงค่ามาเป็นตัวเลขจะต้อง check เงื่อนไข if ยาวเลย ช่วยหน่อยนะครับ

    [Edited by admin on 01-30-2003 at 10:28 AM GMT]

  2. #2
    Administrator asylu3's Avatar
    Join Date
    Jun 2000
    Location
    Thailand
    Posts
    3,557


    Re: How java convert string to integer?

    ลองดูโค้ดนี้ดูนะครับ คิดว่าคงพอได้ idea

    [src]
    String strNum = "123";
    int intNum = Integer.parseInt(strNum); [/src]

  3. #3
    Junior Member
    Join Date
    Dec 2006
    Posts
    0


    Re: แปลง string เป็น integerใน JAVA

    class Test1 {
    public static void main(int args[]){
    int n = (args[0]);
    System.out.println(n);
    }
    }

    Class Test2 {
    public static void main(String args[]){
    int n = Integer.parseInt(args[0]);
    System.out.println(n)
    }
    }

  4. #4
    Senior Member
    Join Date
    Jul 2004
    Location
    Bangkok
    Posts
    187


    Re: แปลง string เป็น integerใน JAVA

    กลับกันอะ
    Code:
    String str = Integer.toString(123);

  5. #5
    Junior Member
    Join Date
    Dec 2006
    Posts
    0


    Re: แปลง string เป็น integerใน JAVA

    class Input{
    public String getInput() {
    char buf = '

  6. #6
    Junior Member
    Join Date
    Dec 2006
    Posts
    0


    Re: แปลง string เป็น integerใน JAVA

    ทำไรกันยืดยาวครับแค่แปลงเลขเป็นสตริง

    String s = 1 + "";

  7. #7
    Junior Member
    Join Date
    Nov 2006
    Posts
    1


    Converting int to string

    String myString = Integer.toString(my int value)

    or
    String str = "" + i


    ที่มา : http://www.narisa.com/forums/index.php?showtopic=11724

Similar Threads

  1. แปลง iPhone 3G(s) เป็น BB
    By Acid3urn in forum iPhone, iPod, iPad
    Replies: 3
    Last Post: 26-01-2010, 07:52 PM
  2. Replies: 0
    Last Post: 23-07-2008, 02:22 AM
  3. Code PHP แปลง TIS-620 เป็น UTF-8
    By hina_lovex in forum PHP,ASP,Javascript, Html
    Replies: 0
    Last Post: 11-02-2008, 06:21 PM
  4. แปลง Fat32 เป็น NTFS
    By Soulhell in forum ทิปหรือเคล็ดลับการคอมพิวเตอร์ต่างๆ
    Replies: 0
    Last Post: 08-11-2007, 03:22 AM
  5. แปลง DVD เป็น VCD
    By asylu3 in forum Computer Tip & Trick / Tutorial
    Replies: 0
    Last Post: 21-11-2003, 08:21 PM

Members who have read this thread : 0

Actions : (View-Readers)

There are no names to display.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •