Search:

Type: Posts; User: beruska

Search: Search took 0.18 seconds.

  1. validate XMl by using XMLUnit and JUnit test?

    Hello,

    I have a problem, I have an error and don't know where is the problem:
    //I've just copied it from some web-page...

    public void testValidation() throws Exception {
    ...
  2. Replies
    3
    Views
    2,098

    Re: update database from List

    TableView or TableRow? I just have a simple AbstractTableModel, all data I store into List<Item>..
  3. Replies
    3
    Views
    2,098

    update database from List

    Hello, I have a question,

    I have a JTable, I read some data and store it in JTable, then I edit these data and I want to send them at once to my database. Is it possible? Or I just should made a...
  4. Replies
    2
    Views
    1,615

    [SOLVED] Re: Catch an Exception right

    I have solved this problem by setting a reference to Observer. :) I'll try to explain my situation better next time.
  5. Replies
    1
    Views
    1,719

    throws Exceptions

    Hello,

    I have a question, if it is possible to throw Exceptions from AbstactTableModel? Or the other one question, if it make sense in OOP?
  6. Replies
    1
    Views
    1,880

    AbstractTableModel

    Hello,

    I have an AbstractTableModel, I read data from database and show them in JTable. Then I'd like to edit some data inside JTable, and when I have edited it I would like to send them back by...
  7. Replies
    1
    Views
    1,876

    [SOLVED] create/drop FB table from Java App

    Hello,

    I just wonder if its possible to create/drop a table in a FB database through java?
    I use JayBird and FireBird

    Thank you in advance.
  8. Replies
    3
    Views
    2,215

    [SOLVED] Re: How to write Eclipse launch file?

    yup, I have. I have solved this. I just wrote an ant, and then converse it to launch file. Anyway thx a lot. :)
  9. Replies
    2
    Views
    1,615

    [SOLVED] Catch an Exception right

    Hello,

    I have a problem, so I hope you can help me guys.
    What I have:
    CLASS A extends thread implements Observer;
    I this class occur several exceptions, I would like to notify about them by...
  10. Replies
    3
    Views
    2,215

    [SOLVED] How to write Eclipse launch file?

    Hello,

    I'm new in Java, and I have a question about writing an Eclipse launch file? Do you know some tutorial how to write it?

    Thank you.
    B.
  11. Replies
    1
    Views
    1,260

    [SOLVED] universal outputstream

    hello,

    I have a question, is this possible to write an universal Ouputstream? I need to print out some data and as a parameter I have a given outputstream, thus I can write into different types of...
  12. [SOLVED] Re: the application runs inside Eclipse, but dont run as a jar from cmd

    Well, The problem is in getResourceAsStream. When I change the path from xsd/schema.xsd to ../schema.xsd it works when I compile it Ctrl+F11, but it doesnt work when I use Ant, is it possible because...
  13. [SOLVED] Re: the application runs inside Eclipse, but dont run as a jar from cmd

    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setValidating(true);
    factory.setNamespaceAware(true);
    factory.setAttribute(SCHEMA_LANGUAGE_ATTRIBUTE,...
  14. [SOLVED] Re: the application runs inside Eclipse, but dont run as a jar from cmd

    Yup I know, so when I unpack my jar i have the folder xsd/schema.xsd, thus the schema is inside my of my jar. I use ant for others things, so I cant just export it :((. I woud like to, but..
  15. [SOLVED] Re: the application runs inside Eclipse, but dont run as a jar from cmd

    the exception is that the stream I get from getResourceAsStream is null, (it has to be an xml scheme/xsd/), thats why I cant parse the xml then.... The manifest is ok, The main-class is ok, I've set...
  16. [SOLVED] the application runs inside Eclipse, but dont run as a jar from cmd

    Hello,

    I have an applications, and it runs correct inside Eclipse (I use build.xml to compile, generate jar, run) and everything seems ok. But when I want to run my generated jar from cmd, i have...
Results 1 to 16 of 16