Click here to Skip to main content
15,885,985 members
Home / Discussions / Java
   

Java

 
QuestionWhat should I I learn with Java? Pin
Member 1509539610-Mar-21 3:02
Member 1509539610-Mar-21 3:02 
AnswerRe: What should I I learn with Java? Pin
NotTodayYo10-Mar-21 3:40
NotTodayYo10-Mar-21 3:40 
AnswerRe: What should I I learn with Java? Pin
Richard MacCutchan10-Mar-21 4:06
mveRichard MacCutchan10-Mar-21 4:06 
QuestionPass variable to HttpURLConnection Pin
xoduhuko10-Mar-21 2:40
xoduhuko10-Mar-21 2:40 
QuestionHow to compare two similar xml documents ignoring node text values by using XMLUnit? Pin
mr.pakapun1-Mar-21 17:32
mr.pakapun1-Mar-21 17:32 
SuggestionRe: How to compare two similar xml documents ignoring node text values by using XMLUnit? Pin
Richard MacCutchan1-Mar-21 21:22
mveRichard MacCutchan1-Mar-21 21:22 
QuestionLicense key generator Pin
keznet lisimati27-Feb-21 0:27
keznet lisimati27-Feb-21 0:27 
QuestionDefault My program does not find the file MyFriends.txt Pin
zorapulo11-Feb-21 16:25
zorapulo11-Feb-21 16:25 
Java
import java.util.Scanner;   // Needed for Scanner class
import java.io.*;           // Needed for File class
 
/**
   This program reads the first line from a file.
*/
 
public class ReadFirstLine
{
   public static void main(String[] args) throws IOException
   {
      // Create a Scanner object for keyboard input.
      Scanner keyboard = new Scanner(System.in);
 
      // Get the file name.
      System.out.print("Enter the name of a file: ");
      String filename = keyboard.nextLine();
 
      // Open the file.
      File file = new File(filename);
      Scanner inputFile = new Scanner(file);
 
      // Read the first line from the file.
      String line = inputFile.nextLine();
 
      // Display the line.
      System.out.println("The first line in the file is:");
      System.out.println(line);
 
      // Close the file.
      inputFile.close();
   }
}


Confused | :confused:

Enter the name of a file: MyFriends.txt
Exception in thread "main" java.io.FileNotFoundException: MyFriends.txt (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.jav a:138)
at java.util.Scanner.<init>(Scanner.java:611)
at ReadFirstLine.main(ReadFirstLine.java:21)
Java Result: 1
AnswerRe: Default My program does not find the file MyFriends.txt Pin
Richard MacCutchan11-Feb-21 21:24
mveRichard MacCutchan11-Feb-21 21:24 
Questionhow to write result in excel using java selenium. Pin
Member 1393850211-Feb-21 2:46
Member 1393850211-Feb-21 2:46 
AnswerRe: how to write result in excel using java selenium. Pin
Richard MacCutchan11-Feb-21 3:01
mveRichard MacCutchan11-Feb-21 3:01 
Generalhow to write result in excel using java selenium. Pin
Member 1393850211-Feb-21 2:32
Member 1393850211-Feb-21 2:32 
GeneralRe: how to write result in excel using java selenium. Pin
OriginalGriff11-Feb-21 2:50
mveOriginalGriff11-Feb-21 2:50 
GeneralRe: how to write result in excel using java selenium. Pin
Cp-Coder11-Feb-21 2:51
Cp-Coder11-Feb-21 2:51 
JokeRe: how to write result in excel using java selenium. Pin
Slacker00711-Feb-21 3:14
professionalSlacker00711-Feb-21 3:14 
GeneralRe: how to write result in excel using java selenium. Pin
Richard MacCutchan11-Feb-21 3:34
mveRichard MacCutchan11-Feb-21 3:34 
GeneralRe: how to write result in excel using java selenium. Pin
Marc Clifton11-Feb-21 3:49
mvaMarc Clifton11-Feb-21 3:49 
QuestionJAVA PROGRAMMING Pin
Member 150686089-Feb-21 2:02
Member 150686089-Feb-21 2:02 
AnswerRe: JAVA PROGRAMMING Pin
Richard MacCutchan9-Feb-21 2:49
mveRichard MacCutchan9-Feb-21 2:49 
QuestionBarrons Ap Computer Science A / question on compound boolean Pin
Ap_noob12-Jan-21 11:45
Ap_noob12-Jan-21 11:45 
AnswerRe: Barrons Ap Computer Science A / question on compound boolean Pin
Richard MacCutchan12-Jan-21 21:40
mveRichard MacCutchan12-Jan-21 21:40 
QuestionConvert string array to integer without using loop? Thanks Azbilegt Chuluunbat Pin
Azbilegt Chuluunbat30-Dec-20 6:48
Azbilegt Chuluunbat30-Dec-20 6:48 
AnswerRe: Convert string array to integer without using loop? Thanks Azbilegt Chuluunbat Pin
Victor Nijegorodov30-Dec-20 7:20
Victor Nijegorodov30-Dec-20 7:20 
AnswerRe: Convert string array to integer without using loop? Thanks Azbilegt Chuluunbat Pin
Richard MacCutchan30-Dec-20 21:26
mveRichard MacCutchan30-Dec-20 21:26 
AnswerRe: Convert string array to integer without using loop? Thanks Azbilegt Chuluunbat Pin
Randor 31-Dec-20 0:30
professional Randor 31-Dec-20 0:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.