Tagged Questions
0
votes
2answers
32 views
creating hashmap from json data
I am working on a very simple application for a website, just a basic desktop application.
So I've figured out how to grab all of the JSON Data I need, and if possible, I am trying to avoid the use ...
-1
votes
0answers
28 views
I need help printing some XML elements from a file so later I can add them to a tab in a JTabbedPane
I need help printing some XML elements from a file so later I can add them to a tab in a JTabbedPane.
I have the following code:
Class XMLreader (2 methods used):
public static ...
1
vote
3answers
42 views
How to read a string stream in Java discarding illegal characters?
I have to parse a stream of bytes coming from a TCP connection that's supposed to only give me printable characters, but in reality that's not always the case. I've seen some binary zeros in there, at ...
-2
votes
2answers
38 views
How can I implement an expressions structure in java that supports evaluating and multiple types
In the light of writing a tool that compiles simple programs in a custom language that uses a parser for parsing simple .txt-file programs, I'm looking for an efficient way to store and evaluate ...
2
votes
3answers
26 views
Ignoring letters when parsing a double from a line in a file
long time lurker, first time poster.
I am trying to import some data from a file line by line. One specific line I was to read from may or may not have "kB" (kiloBytes) at the end and I want to parse ...
-1
votes
1answer
60 views
JSON String to Java object using GSON
I am trying to parse json to java.
I have the following string that is valid json according to jsonlint.com
private final static String LOC_JSON =
"["
+"{"
+" \"lat1\": ...
2
votes
2answers
68 views
Splitting a command line in Java
What's the recommended way to parse a shell-like command line in Java. By that I don't mean processing the options when they are already in array form (e.g. handling "-x" and such), there are loads of ...
-4
votes
0answers
18 views
How to use StanfordCoreNLP [closed]
I want to extract Type dependency with stanfordCoreNLP but I can't.
I write the following code but it has error.
SemanticGraph typeDepen=sentence.get(TypedDependency.class);
...
0
votes
0answers
12 views
Gson: can we get the serialized field name in a type adapter?
I've seen that the default TypeAdapter for Enum doesn't fit my need:
private static final class EnumTypeAdapter<T extends Enum<T>> extends TypeAdapter<T> {
private final ...
0
votes
0answers
13 views
SAX validating parse and jdbc load to MSSQL
i need some answers "obviously" :) (im beginner in java...)
I have a XML which will be validated against xsd then it will be parsed and through JDBC connection loaded into mssql tables.
I made some ...
1
vote
1answer
27 views
How to extract texts between <p> tags using jsoup
I want to extract texts from html page(s) which placed in p and li tags,so i can start to tokenize the page to construct inverted index(es) for each page in order to asnwering search queries.How i can ...
0
votes
1answer
35 views
Reading xls file in java
I am trying to read a xls file that I have to process and I am getting this error:
java.lang.IllegalArgumentException: Sheet index (0) is out of range (0..-1)
I assume that there is a problem with ...
2
votes
6answers
146 views
Shorter solution to if,else if,else if
I'm looking for a way to shorten this code up and avoid repeating code and if statements. What I'm doing is creating a calculator that searches strings for operators "* / + - " and executes them ...
0
votes
0answers
18 views
Separating implementation from definition of a tag/element
I've a problem regarding the datastructure to represent a tag (for example HTML tag/element). On one hand I'd like to have my program keep a list of all supported tags and their supported attributes ...
0
votes
1answer
23 views
Parsing html forms [closed]
I have a website that has a form with three pull-down menus. After I select something in the first pull-down menu, the form refreshes and gives me values for select in the second pull-down menu. After ...
0
votes
1answer
31 views
How can I parse long strings from an online xml file in Andriod application?
I want to parse a very long string from an xml file. You can see the xml file here.
If you visit the above file, there is a "description" tag from which I want to parse the string. When there is a ...
0
votes
4answers
38 views
Append several NodeLists in Java
I've been trying for hours to append three NodeLists and failing. Can you please help me?
I've made following code:
NodeList nList = root.getElementsByTagName("res");
NodeList nList2 = ...
0
votes
2answers
42 views
Java library that has parseInt, parseLong, parseDouble, etc that accept default values and don't throw exceptions?
I like the suggestion in String to Int in java - Likely bad data, need to avoid exceptions to implement a utility method that parses an int, but returns a default value if the string cannot be parsed.
...
0
votes
0answers
20 views
Parse facebook page profile image [closed]
I realize this is more of a request than a question, but no matter how much i try, i can t do this. I need to acquire the profile pic image "src" of this facebook page: ...
0
votes
0answers
36 views
Parsing user data as text - no format in text
My focus is to parse some plain text, which has the information about the users, including what browser, version, and what operating systems each user used, and extract such information ...
0
votes
1answer
55 views
How to parse a text file and create a database record from it
I'm trying to basically make a simple Test Generator. I want a button to parse a text file and add the records to my database. The questions and answers are in a text file. I have been searching the ...
0
votes
1answer
44 views
Java SimpleDateFormat am/pm
I get an Date with format: MM-dd-yy hhmma zzz. The problem is that i only get an A for AM or P for PM. How can I parse a string with that format to a date object?
Alex
0
votes
0answers
37 views
How to replace a value of an attribute in JS function on run time?
I am working on my Java application that (besides other things) produces HTML. In this HTML I need to change a value of one attribute inside one JS function every time I run it. The process is like ...
0
votes
1answer
72 views
Deserialize JSON to Java Map<Integer,Object> with jackson
I am working on some application, which deserialize JSON.
I am building the JSON myself with other software.
I need to deserialize a Map of Objects.
This part is already working.
The problem is that ...
0
votes
2answers
44 views
Java: Parse html file and extract text
I want to parse an HTML file and store the bold text (inside <b> tags). One solution is to read the file line by line and split or use RegEx. This means that I should store the entire page in a ...
-2
votes
1answer
13 views
How to programmatically identificate “Out of Office” Emails of Exchange Server? [closed]
How to programmatically identificate "Out of Office" Emails that received from Exchange Server in mailbox that scanning by my application?
1
vote
5answers
72 views
Java parse different date types
Is there some simple way to parse different type of dates in java without playing with the date strings?
I have to deal with 6 different types of date:
16 May 2013 19:27:12 CEST
Tue, 14 May 2013 ...
0
votes
0answers
10 views
How Can I implement the jep math parcer in Eclipse
Well, I have to say that I'm a noob, I downloaded the Jep math parser, but I don't know how to implement it in eclipse, in order to import the Jep classes. This is what I found on the Jep official ...
-1
votes
3answers
60 views
How to parse a string with no delimiter?
I have a frame that I want to parse. It is a String, and the fields have no delimiters, and have different lengths. How can I get those fields (using Java)?
For example the frame: $XXYYYU#
How can I ...
1
vote
2answers
48 views
Extracting certain text from html file
I want to extract texts from a html file that are placed between parapraph(p) and link(a href) tags.I want to do it without java regex and html parsers.I thougth
while ((word = reader.readLine()) ...
-3
votes
0answers
40 views
Value not getting inserted in array [closed]
I have to insert value in respective array like type nameattribute value and get them in console from array.
import javax.swing.ImageIcon;
import javax.swing.JScrollPane;
import ...
0
votes
2answers
27 views
JSOUP is not getting <param values? [closed]
Document doc = Jsoup.connect(super.getWebAddress()).get();
Elements gethtml = doc.getAllElements();
That is the code I use but when I look through it their is no
<params
but if I ...
1
vote
3answers
107 views
How to parse values returned by getDate() in java?
I have created a web service which returns the date of an event which is initially captured by the getDate() function. I want the date returned by this function (something along this format : ...
0
votes
1answer
21 views
Creating custom annotations with place-holder?
I'm creating some custom annotations. I need to create someones with "place-holders" as it is used in Spring
@Value("#{aParameter}")
or in JSF 2
@ManagedProperty(value="#{aParameter}")
I ...
5
votes
4answers
89 views
How can i use string#split to split a string with the delimiters + - * / ( ) and space and retain them as an extra token?
I need to split strings containing basic mathematical expressions, such as:
"(a+b)*c"
or
" (a - c) / d"
The delimiters are + - * / ( ) and space and i need them as an independent ...
0
votes
4answers
60 views
Can not parse String with Simple Date format
I have a SimpleDateFormat like this :
SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");
and trying to parse such 2012-Jul-29 17:14:39
but I`m getting
...
-8
votes
0answers
41 views
Problème with parsers [closed]
I have a project that parses an Excel file into my application in J2EE (Spring), I use it for the POI API to return of the proofing data from Excel file. The problem that my project is to redesign ...
1
vote
2answers
56 views
splitting a string('_' as delimiter)
I have following string
String S1="S1_T1_VIEW";
I want it to be split and assign to string like this:
String permission = "VIEW";
String component = "S1_T1";
String parent = "S1";
I tried using ...
-1
votes
0answers
36 views
values not displayed in array
public static void main(String[] args) {
final String[] vt= {};
String[] namearray = null,typearray = null;
double[] valuearr = null;
JFrame frame = new JFrame("TabbedPane Source ...
0
votes
0answers
30 views
Getting videoplayback file from javascript (downloading videos from server)?
I am trying to learn how to create video downloaders. This is a previous question: Getting a youtube download URL from existing url?.
The problem is that many websites use .swf objects and adobe ...
3
votes
3answers
64 views
Parse XML into DOM tree with custom object implementations in Java
I want to parse an XML document into a DOM tree in Java such that certain objects (e.g. instances of org.w3c.dom.Node or org.w3c.dom.Element) in the tree can be downcast to instances of classes that I ...
1
vote
1answer
34 views
Custom JSON deserializer using Gson
I have a problem with parsing a JSON response using Gson.
JSON string:
response: [
2, {
owner_id: 23972237,
album_id: 25487692,
title: 'album not new'
}, {
owner_id: 23972237,
...
-1
votes
2answers
46 views
Generic XML parser design analysis [closed]
We need to create a generic xml parser and rule engine which reads xmls files and store the data in appropriate tables.
Use Case:
Suppose we have Afile1.xml coming from A
<x>
...
0
votes
1answer
31 views
Make Tess4J get image from PDF file
How to make Tess4J get image from PDF file?
I'm sarted on the transformation image file to text using OCR (Tess4J). It works fine, I have tested on image and it is great.
File imageFile = new ...
1
vote
1answer
44 views
storage error on default handler
I have to store data from sax parser in array but it shows nullreal values and lastly it is showing exception of Array out of bound. How do I add all the data types in array like name attribute vtype ...
0
votes
2answers
94 views
Find a list of unique IP address from a text file
How to write a program in Java to find a list of unique IP address from a text file?
I am only a newbie at Java. And I have the following data in txt format:
Date first seen Duration Proto ...
1
vote
1answer
29 views
Deserializing JSON to non-static nested classes using Gson
According to this Gson can deserialize to inner classes. I have the next fragment of JSON string:
...
"coordinates": {
"coordinates": [106.80552006,-6.22016938],
"type": "Point",
}
...
...
-1
votes
2answers
77 views
Java Scanner “rewind”
I'm using a Java Scanner object to parse a text file.
I would need to scan part of the file twice (for performance reasons so that I don't have to store its content temporarily).
Hence, is there an ...
-1
votes
0answers
19 views
Parsing XML records in java 6 or Python 2 with no XSD or style sheets [closed]
I have eclipse, Java 6 and Python 2.
I have XML records that are somewhat complex
e.g.:
<?xml version ="1.0'
....
<param_group name ="General">
<param_group name ="Basic ...
4
votes
1answer
70 views
Determine whether a PDF page contains text or is purely picture
How to determine whether a PDF page contains text or is purely picture, using Java?
I searched through many forums and websites, but I can not find an answer yet .
Is it possible to extract text ...



