
Concept explainers
Explanation of Solution
Program code:
JavaStripper.java
//import the required packages
import java.io.File;
import java.util.Arrays;
import java.util.Scanner;
//define a class JavaStripper
public class JavaStripper
{
//define the main
public static void main(String[] args) throws Exception
{
//create the object of File class
File fileName = new File("htmlfile.txt");
//create the object of Scanner class to refer the file
Scanner inFile = new Scanner(fileName);
//call the method stripComments()
stripComments(inFile);
}
//define a method stripComments()
public static void stripComments(Scanner inFile) throws Exception
{
//create a string variable inputstring
String inputstring = "";
//iterate a while loop
while (inFile.hasNextLine())
{
//read the line to inputstring
inputstring = inputstring + " \n " + inFile.nextLine();
}
//create a character array
char[] inputchar = inputstring.toCharArray();
//create an integer variable
int nCommentBegin = 0;
//create a boolean variable
boolean IsLineCommentOpen = false;
//iterate a for loop
for(int i = 0; i<inputchar.length; i++)
{
//if the condition is true
if(inputchar[i] == '/' && inputchar[i+1] == '*')
{
//set as starting of comment
nCommentBegin = i;
}
//else condition
else if(inputchar[i] == '*' && inputchar[i+1] == '/')
{
//remove the comments within /* */
char[] str2Remove = Arrays.copyOfRange(inputchar, nCommentBegin,(i+2));
//set the value of inputstring
inputstring = inputstring.replace(new String(str2Remove), "");
}
//else condition
else if(inputchar[i] == '/' && inputchar[i+1] == '/')
{
//set as the beggning of single line comment
nCommentBegin = i;
IsLineCommentOpen = true;
}
//else if the character is \n
else if(inputchar[i] == '\n')
{
//checks the va
if(IsLineCommentOpen)
{
//set the value of str2Remove
char[] str2Remove = Arrays.copyOfRange(inputchar, nCommentBegin,i);
//call the replace() method
inputstring = inputstring.replace(new String(str2Remove), "");
//set the value of IsLineCommentOpen to false
IsLineCommentOpen = false;
}
}
}
//print the inputstring
System...

Want to see the full answer?
Check out a sample textbook solution
Chapter 6 Solutions
Building Java Programs: A Back To Basics Approach (5th Edition)
- Benefits of using arrays as instance variables: What are the advantages of incorporating arrays as instance variables within a class? Initializing and managing arrays: How do you initialize and manage arrays within class constructors and mutators (setters)? Example of using arrays as instance variables: Share an example where you have used arrays as instance variables and discuss its application in a real-world scenario. Common mistakes with arrays as instance variables: What are some common mistakes to avoid when working with arrays as instance variables? Information hiding violations: What is the potential violation of information hiding when using arrays as instance variables? How can this be resolved?arrow_forwardDo you think that computers should replace teachers? Give three references with your answer.arrow_forwardIs online learning or face to face learning better to teach students around the around the world? Give reasons for your answer and provide two references with your response. What are benefits of both online learning and face to face learning ? Give two references with your answer. How does online learning and face to face learning affects students around the world? Give two references with your answer.arrow_forward
- Explain Five reasons if computers should replace teachers. Provide three references with your answer. List three advantages and three disadvantages face to face learning and online learning may have on children. Provide two references with your answer.arrow_forwardYou were requested to design IP addresses for the following network using the address block 10.10.10.0/24. Specify an address and net mask for each network and router interfacearrow_forwardFor the following network, propose routing tables in each of the routers R1 to R5arrow_forward
- How can I type the Java OOP code by using JOptionPane with this following code below: public static void sellCruiseTicket(Cruise[] allCruises) { //Type the code here }arrow_forwardDraw a system/level-0 diagram for this scenario: You are developing a new customer relationship management system for the BEC store, which rents out movies to customers. Customers will provide comments on new products, and request rental extensions and new products, each of which will be stored into the system and used by the manager for purchasing movies, extra copies, etc. Each month, one employee of BEC will select their favorite movie pick of that week, which will be stored in the system. The actual inventory information will be stored in the Entertainment Tracker system, and would be retrieved by this new system as and when necessary. Example of what a level-0 diagram looks like is attached.arrow_forwardWhat is the value of performing exploratory data analysis in designing data visualizations? What are some examples?arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





