Related questions
ONLY IN JAVA PLS
Make as simple as possible
Modify the attached
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Files
{
public static void main(String[] args) throws FileNotFoundException
{
int minimumStringLength = Integer.parseInt(args[1]);
// Open the file.
File file = new File("replaceMe");
Scanner inputFile = new Scanner(file);
inputFile.useDelimiter("[^a-zA-Z]+");
// Read until the end of the file.
while (inputFile.hasNext())
{
String word = inputFile.next();
System.out.println(word);
}
// close the file when done.
inputFile.close();
}
}
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 3 images
- In Java, please upload successful output as wellarrow_forwardWrite a program called FiveLetterWords that: prints your name followed by three asterisks; reads the words in a text file into a String array, where each array entry contains a word; prints the number of words in the file; counts and prints the number of five-letter words; prints all of the five-letter words starting with a vowel (that is, 'a', 'e', 'i', 'o', or 'u'); finds and prints the alphabetically first five-letter word and the alphabetically last five-letter word. tale.txt file content : it was the best of times it was the worst of timesit was the age of wisdom it was the age of foolishnessit was the epoch of belief it was the epoch of incredulityit was the season of light it was the season of darknessit was the spring of hope it was the winter of despairarrow_forwardCan you help me fix my code in Java, please? I am stuck to keep going. Thank youarrow_forward
- in java eclipse. Please add comments. I have stared the code please in the same code add the following question. Thank you f. Create a new StringBuilder Object using no-arg constructor. g. Using for loop append the array elements one by one to the StringBuilder (one per loop iteration) h. Record a run-time it took to append all integers to the StringBuilder (record run-time of 2.g.)) i. Repeat the testing with 500 and 5,000 elements by again creating new integer arrays with 500 and 5000 sizes respectively. j. Record and display the run-time it took to append all integers to the String and StringBuilder respectively. k. Submit the screenshot of results and a small summary in the form of a table below : Time / size 50 500 5,000 String StringBuilder The image is the code started.arrow_forwardWrite a java method called switchThem that accepts two integer arrays as parameters and switches the contents of the arrays. Take into account that the arrays may be of different sizes.arrow_forwardNew JAVA code can only be added between lines 9 and 10, as seen in image.arrow_forward
- I need help with Chapter 10. Practice exercise 10.9 of the Introduction to Java 11 edition book. I tried using the textbook example but I got a few errors I couldn't figure out how to fix.arrow_forwardSubmit the code (copy&paste) with a screen shot of the same sample run as below. 1. Write a class ArrayMethods, where the main method asks the user to enter the num ber of inputs and stores them in an array called myList. Create a method printArray that prints the array myList. Create another method copyArray that copies the array using System.arraycopy, and multiplies each element in the copied array by 2, then finally returns the array to the main method. Invoke the printarray again to print the array returned by copyArray. In summary, see below. main method does: asks user for inputs and stores in array. Invoke printArray. Invoke copyArray. Invoke printArray again. printArray: void method, parameters passed is an array, prints an array copyArray: array-returningmethod, parameters passedis an array, copies array, multiplies 2 to each element in the copied array, returnsthe copied arrayarrow_forwardImage one is the example output of text-based histogram . Image 2 is my file. You can creat a new file too(up to u) as long as the output shows the times of appearances of the numbers. (Like the example showed in image 1, if number 20 appeared 1 times, print 1 star after it. I want to write: A method to print a text-based histogram takes one parameter, an array of integers no return valuearrow_forward
- Text book imageComputer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONText book imageComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceText book imageNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Text book imageConcepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningText book imagePrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationText book imageSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY