Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In


Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here


Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.


Have an account? Sign In Now

You must login to ask question.


Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this answer should be reported.

Sign InSign Up

eHowToNow Forum

eHowToNow Forum Logo eHowToNow Forum Logo

eHowToNow Forum Navigation

  • Home
  • Forum
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Meet The Team
  • Blog
  • About Us
  • Contact Us

Java

Share
  • Facebook
0Followers
0Answers
13Questions
Home/Java

Discy Latest Questions

Newton Alarcao
Newton Alarcao

Newton Alarcao

  • 1 Question
  • 1 Answer
  • 0 Best Answers
  • 21 Points
View Profile
  • 0
Newton AlarcaoBegginer
Asked: March 31, 2022In: Java

Sudoku grid lines

  • 0

import java.awt.Color; import java.awt.Component; import java.awt.BorderLayout; import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.JTable; public class jFrameGeraSudoku extends javax.swing.JFrame { /** * Creates new form jFrameGeraSudoku */ public jFrameGeraSudoku() { initComponents(); } static int [][] Exist = new int [9][9]; static int Value ...

how to draw thicker line to emphasize sudoku boxes
  • 1 1 Answer
  • 26 Views
Answer
nancy
nancy

nancy

  • 1 Question
  • 0 Answers
  • 0 Best Answers
  • 2 Points
View Profile
  • 1
nancy
Asked: July 5, 2021In: Java

Maven Compile failed with Source option 5 is no longer supported. Use 7 or later.

  • 1

I’m trying to compile my Java Project in Eclipse IDE, but my Maven Compile failed with Source option 5 is no longer supported. Use 7 or later. error. I checked my build path & I can run standalone Java program but ...

javamavenpom xml
  • 0 0 Answers
  • 19 Views
Answer
saravanavel
saravanavel

saravanavel

  • 3 Questions
  • 0 Answers
  • 0 Best Answers
  • 3 Points
View Profile
  • 0
saravanavel
Asked: June 30, 2021In: Java

java.lang.IllegalStateException: Cannot get a text value from a numeric cell

  • 0

How to read numeric or all type of column as String. I want all my column data as String, So I’m trying to get the cell value using cell.getStringCellValue() , Its not working is there any other option in Apache POI ...

apache poiexcel parsingjava
  • 0 0 Answers
  • 15 Views
Answer
saravanavel
saravanavel

saravanavel

  • 3 Questions
  • 0 Answers
  • 0 Best Answers
  • 3 Points
View Profile
  • 0
saravanavel
Asked: June 30, 2021In: Java

org.apache.poi.openxml4j.exceptions.NotOfficeXmlFileException: The supplied data appears to be a raw XML file.

  • 0

I’m trying to parse a excel file using apache poi but I’m getting the error “org.apache.poi.openxml4j.exceptions.NotOfficeXmlFileException: The supplied data appears to be a raw XML file. Formats such as Office 2003 XML are not supported“. I research & found xls ...

apache poiexcel parsingjava
  • 0 0 Answers
  • 20 Views
Answer
shilpa
shilpa

shilpa

  • 1 Question
  • 0 Answers
  • 0 Best Answers
  • 1 Point
View Profile
  • 0
shilpa
Asked: June 9, 2021In: Java

How to split the String by space

  • 0

I want to split the string by space, below code not working. I’m new to Java. Please share the good tutorials for beginners. String s1 = “Welcome to Hello World Java”; String[] str = s1.split(” “);

javajava stringregexregular expression
  • 1 1 Answer
  • 18 Views
Answer
yamini
yamini

yamini

  • 2 Questions
  • 0 Answers
  • 0 Best Answers
  • 2 Points
View Profile
  • 0
yamini
Asked: June 8, 2021In: Java

Tamil text not displayed properly in Graphics2D drawString

  • 0

Tamil text not displayed in image created using BufferedImage  & Graphics2D. I set “Latha” font instead of “Arial” but still its displaying text as boxes. Please help me why Tamil font not supported in Graphics2D BufferedImage img = ImageIO.read(new File(“template.jpg”)); Graphics2D g2d ...

bufferedimagegraphics2djavajava image
  • 0 0 Answers
  • 8 Views
Answer
techgeek
techgeek

techgeek

  • 1 Question
  • 0 Answers
  • 0 Best Answers
  • 1 Point
View Profile
  • 0
techgeek
Asked: June 5, 2021In: Java

Exception in thread “main” java.util.regex.PatternSyntaxException: Unexpected internal error near index 1

  • 0

I’m getting below error while split the string by “\” even I used with escape “\\” but still getting the exception Exception in thread “main” java.util.regex.PatternSyntaxException: Unexpected internal error near index 1 \ at java.base/java.util.regex.Pattern.error(Pattern.java:2029) at java.base/java.util.regex.Pattern.compile(Pattern.java:1790) at java.base/java.util.regex.Pattern.<init>(Pattern.java:1431) at java.base/java.util.regex.Pattern.compile(Pattern.java:1070)

core javajavaregexregular expression
  • 1 1 Answer
  • 26 Views
Answer
priyadharshini
priyadharshini

priyadharshini

  • 1 Question
  • 0 Answers
  • 0 Best Answers
  • 1 Point
View Profile
  • 0
priyadharshini
Asked: May 19, 2021In: Java

java.util.regex.PatternSyntaxException: Dangling meta character ‘?’ near index 0

  • 0

I’m trying to replace all the question (?) mark in my document String s = “xyz?”; s.replaceAll(“?”.””); using sample code mentioned above but getter java.util.regex.PatternSyntaxException: Dangling meta character ‘?’ near index 0 what I’m doing wrong here ? why I’m getting this error ? java.util.regex.PatternSyntaxException: ...

javaregexregular expression
  • 0 0 Answers
  • 13 Views
Answer
pushpalatha
pushpalatha

pushpalatha

  • 1 Question
  • 0 Answers
  • 0 Best Answers
  • 1 Point
View Profile
  • 0
pushpalatha
Asked: May 16, 2021In: Java

XPath Expression not working with setNamespaceAware(true)

  • 0

XPath Expression not working factory.setNamespaceAware(true); . If I comment out the line its working properly. May I know why its not working with Namesapce Aware ? package com.test; import java.io.IOException; import java.io.StringReader; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import javax.xml.xpath.XPath; import javax.xml.xpath.XPathConstants; import javax.xml.xpath.XPathExpression;

javaxmlxpath
  • 0 0 Answers
  • 16 Views
Answer
arunkumar
arunkumar

arunkumar

  • 3 Questions
  • 0 Answers
  • 0 Best Answers
  • 4 Points
View Profile
  • 0
arunkumar
Asked: May 15, 2021In: Java

WARNING: Illegal reflective access by org.dom4j.io.SAXContentHandler while parsing Excel file

  • 0

Getting below issue while parsing excel file using Apache poi, My workspace contains below jars in pom.xml, Why we need dom4j.jar to read excel file ? Internal dependency should be auto resolved ? <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.10-FINAL</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId>

apache poiexcel parser
  • 0 0 Answers
  • 95 Views
Answer
Load More Questions

Sidebar

Ask A Question

Stats

  • Questions 66
  • Answers 12
  • Best Answers 2
  • Users 32
  • Popular
  • Answers
  • smartrader

    com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of

    • 2 Answers
  • Vignesh

    How to delete unpushed changes in git

    • 2 Answers
  • Appu

    புதிய குடும்ப அட்டை விண்ணப்பிப்பது எப்படி ?

    • 1 Answer
  • Newton Alarcao
    Newton Alarcao added an answer I have an additional question. In the problem I submitted… April 3, 2022 at 2:48 pm
  • Ganesh
    Ganesh added an answer How to apply created patch to new branch ? we… September 10, 2021 at 8:01 am
  • ehowtonow
    ehowtonow added an answer Delete the most recent commit without loosing your changes, use… September 10, 2021 at 6:52 am

Top Members

ehowtonow

ehowtonow

  • 1 Question
  • 53 Points
Teacher
Appu

Appu

  • 1 Question
  • 44 Points
Begginer
Newton Alarcao

Newton Alarcao

  • 1 Question
  • 21 Points
Begginer
MaheshKannan

MaheshKannan

  • 0 Questions
  • 20 Points
Begginer
Annamalai T

Annamalai T

  • 0 Questions
  • 20 Points
Begginer

Trending Tags

aadhar angular angularjs apache poi bufferedimage cmda core java database docker dtcp education encumbrance certificate excel parser excel parsing git government graphics2d gui hibernate how to draw thicker line to emphasize sudoku boxes jackson java java image java string jpa json k8s kubernetes material design maven medicine minikube orm pom xml ration card real estate regex regular expression trading vaccine version control xml xpath வில்லங்க சான்றிதழ்

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Footer

eHowToNow Forum

eHowToNow.com forum is a social questions & Answers Engine which will help you establish your community and connect with other people.

About Us

  • Meet The Team
  • Blog
  • About Us
  • Contact Us

Legal Stuff

  • Terms of Use
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

Follow

© 2021 eHowToNow.com. All Rights Reserved