- Q Being a girl, why did you choose civil engineering?
- Q What is hypothecation?
- Q Does each thread in java uses seperate stack?
-
Q
You are creating an ASP.NET page that contains a Label control named specialsLabel. A text file named Specials.txt contains a list of products. Specials.txt is located in the application directory. Each product name listed in Specials.txt is followed by a carriage return. You need to display a list of featured products in specialsLabel. You need to retrieve the lost of products from Specials.txt. Which code segment should you use?
A. System.IO.StreamReader reader =
System.IO.File.OpenText(Server.MapPath(Specials.txt));
string inout = ;
while (input !=null)
{
specialsLabel.Text =
string.Format({0}
{1} , specialsLabel.Text, input); input = reader.BaseStream.ToString(); } reader.Close(); B. System.IO.StreamReader reader = System.IO.File.OpenText( Server.MapPath(Specials.txt)); string inout = ; input = reader.ReadLine(); while (input != null) { specialsLabel.Text = string.Format({0}
{1} , specialsLabel.Text, input); input = reader.ReadLine(); } reader.Close() C. System.IO.Stream strm = System.IO.File.OpenRead( Server.MapPath(Specials.txt)); byte[] b 0 new byte[1024]; string input; input = strm.Read(b, 0, b.Length).ToString(); specialsLabel.Text = input strm.Close(); D. System.IO.Stream strm = System.IO.File.OpenRead( Server.MapPath(Specials.txt)); string input; input = strm.ToString(); specialsLabel.Text = input; strm.Close(); - Q What is difference between View State and Hidden Field in ASP.NET?
- Q Difference between arrays and linked list?
- Q Which attribute adorn a test class to be picked up by the NUnit GUI in the NUnit test framework?
- Q How do u migrate bo 6.x to xi?
- Q The alcohol which is present in the alcoholic beverages is?
- Q Tim Morse has been appointed as chief financial officer by which of the internet giants?
- Q Where is the Headquarters of Prambikulam Wildlife Santuary, which has entrance only through Tamilnadu?
Question
What's wrong with this code ?
public static void main(String[] args) {
String regex = "(w+)*";
String s = "Java is a programming language.";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(s);
while (matcher.next()) {
System.out.println("The e-mail id is: " + matcher.group());
}
}
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
Answers
matcher.find() should have been used instead of matcher.next() within while.
Your Comment
- 0
- 0
- New Answer
- Contributors: *,
More Software,W,Java Questions..
What is the inputsplit in map reduce software?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Can variables be used in Java without initialization?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Java,
What is the difference between java bean and enterprise java bean?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Java,
What is software configuration management?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
How does the java database connectivity (jdbc) work?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Java,
What are the advantages of threads in java?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 0 )
- Tags: Java,
What Is Java Api For Xml-based Rpc (jax-rpc)?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
How can you implement fine-grained auditing?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is IBM’s simple explanation for Big Data’s four critical features?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is static synchronized method in JDBC API? Give an example?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
What does the NULLIF function do?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What happens if a start method is not invoked and the run method is directly invoked?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Should we override finalize method
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
what is the difference between mysql_fetch_array and mysql_fetch_object?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
How will XML affect my document links?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is object cloning in Java?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 0 )
- Tags: Java,
Why to use Style Sheets?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What are Filters in MVC?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Can you explain Application layer in OSI model?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
How to define new testplan attributes?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,