how to take user input in Array using Java? i.e we are not initializing it by ourself in our program but the user is going to give its value.. please guide!!
|
Here's a simple code that reads strings from
See also: |
|||
|
|
|
|||||
|
|
You can process the user-supplied arguments using
within your class that you're executing. Check out this link for a more detailed explantion. |
|||
|
|
It vastly depends on how you intend to take this input, i.e. how your program is intending to interact with the user. The simplest example is if you're bundling an executable - in this case the user can just provide the array elements on the command-line and the corresponding array will be accessible from your application's Alternatively, if you're writing some kind of webapp, you'd want to accept values in the If it's a Swing application you would probably want to pop up a text box for the user to enter input. And in other contexts you may read the values from a database/file, where they have previously been deposited by the user. Basically, reading input as arrays is quite easy, once you have worked out a way to get input. You need to think about the context in which your application will run, and how your users would likely expect to interact with this type of application, then decide on an I/O architecture that makes sense. |
|||||||||||
|
|
**How to accept array by user Input Answer:-
|
|||||
|
|
import java.util.Scanner; class Example{ //Checks to see if a string is consider an integer.
} |
|||||||
|
|