Forum: Java Nov 21st, 2008 |
| Replies: 12 Views: 1,898 thank you once again....
my problem is allways with the collectage of the data from the txt file....
thank you |
Forum: Java Nov 21st, 2008 |
| Replies: 12 Views: 1,898 something like this^??????
JFreeChart chart = ChartFactory.createBarChart( |
Forum: Java Nov 21st, 2008 |
| Replies: 12 Views: 1,898 You are right... i want a bar chart... but as a newby i'm still trying to discover to potential of the javafreechart... reading trying reading trying... i'm too slowwww...
thank you for your... |
Forum: Java Nov 21st, 2008 |
| Replies: 12 Views: 1,898 It was not plotting the data imported from the file,,,
the file contents...
it looks like this.... 1st column is the error description and the second the quantity...
:) sorry about my fail |
Forum: Java Nov 21st, 2008 |
| Replies: 12 Views: 1,898 Really... it getting the data from the txt file ?
:-O |
Forum: Java Nov 21st, 2008 |
| Replies: 12 Views: 1,898 Hi there...
The graphic is not plotting can anyone help me to find where is the problem... |
Forum: Java Nov 21st, 2008 |
| Replies: 12 Views: 1,898 Hello my friends
I have a txt file with the follow layout
and what i'm trying to achieve is, from this text file plot a trend chart with the errors and respective quantity!
this is the... |
Forum: Java Nov 14th, 2008 |
| Replies: 15 Views: 861 well after reading the manual and adapting some code of my own....
package Ekra;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import... |
Forum: Java Nov 13th, 2008 |
| Replies: 15 Views: 861 |
Forum: Java Nov 13th, 2008 |
| Replies: 15 Views: 861 Thank you for the Tip... i'm reading the documentation related to Jfreechart...
Did you ever work with it? any advices? |
Forum: Java Nov 13th, 2008 |
| Replies: 15 Views: 861 This way the file has the following layout
So my idea would be create Trend charts - Bar for every single equipment where i could have what were the top5 errors with the quantity...
and... |
Forum: Java Nov 13th, 2008 |
| Replies: 15 Views: 861 Hi there.. you are right when you ask what i want!
the kind of result that i want is what i'm going to send you by e-mail... its a simple thing.... and the data is available in a text file... that... |
Forum: Java Nov 12th, 2008 |
| Replies: 15 Views: 861 |
Forum: Java Nov 12th, 2008 |
| Replies: 15 Views: 861 |
Forum: Java Aug 13th, 2008 |
| Replies: 0 Views: 1,281 package spimonitoring;
import java.io.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.lang.reflect.Array;
public class InspectionResults44{
public static final byte ... |
Forum: Java Aug 5th, 2008 |
| Replies: 40 Views: 3,414 here it is!
public class SpimonitoringFrame extends javax.swing.JFrame {
/* SPIMON */
static final int MAX_DEPTH = 100; // Max 100 levels (directory nesting)
static final... |
Forum: Java Aug 5th, 2008 |
| Replies: 40 Views: 3,414 doesn't work...:(
public void listRecursively(File fdir, int depth) throws IOException {
/*Transform milliseconds time to gregorian time */
long datefiles = fdir.lastModified();... |
Forum: Java Aug 5th, 2008 |
| Replies: 40 Views: 3,414 HI!
The first block i'd already define previously...
byte HEIGHT_AVG_RESULT = 0,
HEIGHT_RANGE_RESULT = 0,
AREA_AVG_RESULT = 0,
AREA_RANGE_RESULT = 0,
... |
Forum: Java Aug 5th, 2008 |
| Replies: 40 Views: 3,414 Hi Mr. Alex!
Thank you in advance....
what i'm trying to do is....
public void listRecursively(File fdir, int depth) throws IOException {
/*Transform milliseconds time to gregorian time... |
Forum: Java Aug 4th, 2008 |
| Replies: 40 Views: 3,414 yes it does work... so i just need to apply this concept.. to your script??? |
Forum: Java Aug 4th, 2008 |
| Replies: 40 Views: 3,414 1.5... in the factory...
6 in my laptop,,,, but i'm not using it now :( |
Forum: Java Aug 4th, 2008 |
| Replies: 40 Views: 3,414 temp = Arrays.<String>copyOfRange(temp, 1, temp.length); |
Forum: Java Aug 4th, 2008 |
| Replies: 40 Views: 3,414 package spimonitoring;
import java.io.*;
import java.util.Arrays;
import java.lang.reflect.Array;
public class InspectionResults2{
public static final byte HEIGHT_AVG_RESULT = 7,... |
Forum: Java Aug 4th, 2008 |
| Replies: 40 Views: 3,414 Thank you for your help...
Eclipse is giving me an error on this line ยจ
temp = Arrays.<String>copyOfRange(temp, 1, temp.length);
in copyOfRange...
what library are you using? |
Forum: Java Aug 4th, 2008 |
| Replies: 40 Views: 3,414 HI..
The information will vary only with 44 and 32... so i'm adapting the code for 32 as well...
I'm going to try first.. and then will tell Further more.. THHHAANNNKKK YOOUUU SOO MUCH... |
Forum: Java Aug 3rd, 2008 |
| Replies: 40 Views: 3,414 Hi again...
I'm completely lost... despite the fact i don't know how to use your code... my head is almost getting nuts... i've found that some records have 32 instead of 45.. therefore i'm using... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 Hi Alex!
First i would like to say. Thank you very much!
Secondly... i'm lost i don't know how to use your code despite i understand the concept behind! I need to reed more in order to apply... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 /* .........................Recursive list............................... */
public void listRecursively(File fdir, int depth) throws IOException {
/*Transform milliseconds time to... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 :(
I was reading your code... i'm really lousy...
thats why i need to know how should i use your code sorry....:( My code is
private class Start extends Task<Void, Void> {
@Override... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 what i have similar to split is...
String st = record;
String []splitSt = st.split(",");
System.out.println("string : " + st );
System.out.println("length :" +... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 regarding
"so you will need to use a tokenizer for each line you examine to tokenize a line of value separated by commas."
I have that as well... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 Uau.. you are fast.. i will give a look and tryout with my program... i have evrything done regarding access the folders read/access the csv files, count the number of ocurrences... store the data in... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 Thank u for the tips.. i will try to find examples in the Web in order to guid me... because i'm not so good..
the reason i'v choose only the fails was that sometimes i have 1500 files with i... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 You don't need to apologize ... i was not so explicit...
In fact what i need to colect is... lets say that i have a faillure... this failure is based in the cross analysis of the values... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 Thank you for the tips...
I'm planning to do this... however i'm rusty again...what i have done so far was to count the number of F =fails that each csv file had... and assign to the name of the... |
Forum: Java Jul 28th, 2008 |
| Replies: 40 Views: 3,414 ... Hello everyone i have some csv files that are the result of the inspection machine...
these CSV files have the following layout
,SRFF File: D:\SPI Master Program... |
Forum: Java Apr 9th, 2008 |
| Replies: 15 Views: 2,875 Hi!
I have assigned the field fail location as primary key... is the only field were data won't repeat itself or very seldom...
so in this case what is your advise????
SOrry to disturb you... |
Forum: Java Apr 9th, 2008 |
| Replies: 15 Views: 2,875 In the Table i have defined a primary key....
if i remove that - Statement.RETURN_GENERATED_KEYS - it will work but regarding duplicated data... what to do? to prevent that....
regards,
... |
Forum: Java Apr 9th, 2008 |
| Replies: 15 Views: 2,875 package spilog;
import java.io.*;
import java.sql.*;
import java.util.StringTokenizer;
import java.io.BufferedReader;
import java.io.FileReader;
class Database { |
Forum: Java Apr 9th, 2008 |
| Replies: 15 Views: 2,875 Hi again,,,
I'm trying to understand,,,, and i can't
I've tryed something like this
package spilog;
import java.io.*;
import java.sql.*; |