[Java Netbeans] App werkt wel binnen netbeans, niet erbuiten

Pagina: 1
Acties:
  • 100 views sinds 30-01-2008
  • Reageer

  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Wij zijn voor een schoolproject een applicatie aan het bouwen met een Postgresql database eraan gekoppeld. Binnen netbeans werkt hij nu perfect!

Echter, als ik hem build en vervolgens de jar file run, krijg ik netjes het eerste scherm voor me (inlogscherm), alleen de knoppen doen het niet!

Volgens mij mist hij de jdbc packages die nodig zijn voor de database connectie. Ik heb echter al rondgezocht in netbeans, maar ik zie nergens waar ik ze toe moet voegen.

Ik heb de folder met de jdbc files al in de libraries list gezet, maar dat mocht ook niet baten.

Kan iemand mij vertellen hoe ik hem aan de praat krijg?

  • Gert
  • Registratie: Juni 1999
  • Laatst online: 05-12-2025
Als je de jar runt door de dubbelklikken zal het niet werken, dan weet hij niet waar die libs staan. Dit zet je in je classpath die je meegeeft aan java.exe.

Met java -jar jejarile -cp .;locatievanpostgresql.jar start je de applicatie met het goede classpath.
javaw kan ook, dan krijg je geen dos-box te zien.

  • Standeman
  • Registratie: November 2000
  • Laatst online: 09:28

Standeman

Prutser 1e klasse

Krijg je nog foutmeldingen?
Welke versie van Netbeans?
Staan je libraries in de classpath?
Bedoel je met knoppen JButtons?
Gebruik je AbsoluteLayout? Zo ja, dan moet je de jar (AbsoluteLayout.jar) nog even meepakken en in je classpath zetten.

Verder kan je ook beter de distribution jar gebruiken (in /dist).

The ships hung in the sky in much the same way that bricks don’t.


  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Ik krijg de volgende error:

Dit run ik:
C:\Documents and Settings\Joris\Bureaublad\Heinz Bier\dist>java -jar Heinz_Bier.jar -cp .;postgresql-8.1-04.jdbc3.jar

Deze fout krijg ik:
java.lang.ClassNotFoundException: org.postgresql.Driver
java.lang.NullPointerException

Ik maak gebruik van Null-layout, en de knoppen zijn idd jButtons

En wat bedoel je precies met de vraag: Staan je libraries in je classpath?

Oh ja, ik maak gebruik van NetBeans 5.0 Beta 2

[ Voor 18% gewijzigd door Mishmash op 12-01-2006 13:21 ]


  • Standeman
  • Registratie: November 2000
  • Laatst online: 09:28

Standeman

Prutser 1e klasse

Mishmash schreef op donderdag 12 januari 2006 @ 13:19:
Ik krijg de volgende error:

Dit run ik:
C:\Documents and Settings\Joris\Bureaublad\Heinz Bier\dist>java -jar Heinz_Bier.jar -cp .;postgresql-8.1-04.jdbc3.jar

Deze fout krijg ik:
java.lang.ClassNotFoundException: org.postgresql.Driver
java.lang.NullPointerException

Ik maak gebruik van Null-layout, en de knoppen zijn idd jButtons

En wat bedoel je precies met de vraag: Staan je libraries in je classpath? Zo nee? pas het classpath aan of kopieer de jar naar de directory..

Oh ja, ik maak gebruik van NetBeans 5.0 Beta 2
Staat postgresql-8.1-04.jdbc3.jar in de dir C:\Documents and Settings\Joris\Bureaublad\Heinz Bier\dist ?

[ Voor 6% gewijzigd door Standeman op 12-01-2006 13:33 ]

The ships hung in the sky in much the same way that bricks don’t.


  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Ja die staat daar.

Ik heb 3 files:
postgresql-8.1-404.jdbc2.jar
postgresql-8.1-404.jdbc2ee.jar
postgresql-8.1-404.jdbc3.jar

Ik weet alleen niet of ik ze alle 3 nodig heb... dat zal toch niet?

Ik zag net dat ik dat ik hierboven in de regel een tikfoutje heb gemaakt, maar ik heb het nogmaals geprobeerd met de goede naamgeving, en dat werkte ook niet...

[ Voor 30% gewijzigd door Mishmash op 12-01-2006 13:36 ]


  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Ik heb het net even opgezocht, maar voor JDK 1.5 is alleen de postgresql-8.1-404.jdbc3.jar nodig. Dit is toch de juiste command regel:

java -jar Heinz_Bier.jar -cp .:postgresql-8.1-404.jdbc.jar

Of heb ik hier nog een fout gemaakt?

*edit*
Kan het misschien zijn dat er een fout in mijn Main.class staat?

Hiermee maak ik verbinding met de database:

code:
1
2
3
4
5
6
7
8
9
static public void verbind() {
        try {
            Class.forName("org.postgresql.Driver");
            verbinding = DriverManager
                                .getConnection("jdbc:postgresql://localhost/pbier?user=username&password=password");
        } catch (Exception f) {
            System.err.println(f);
        }
    }


Klopt dat org.postgresql.Driver wel?
*/edit*

[ Voor 54% gewijzigd door Mishmash op 12-01-2006 14:20 ]


  • Confusion
  • Registratie: April 2001
  • Laatst online: 01-03-2024

Confusion

Fallen from grace

Het lijkt alsof je unix en windows classpath seperators loopt te mixen, maar dat kan een typo zijn. In ieder geval moet jij een ; gebruiken.

Wie trösten wir uns, die Mörder aller Mörder?


  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Confusion schreef op donderdag 12 januari 2006 @ 14:20:
Het lijkt alsof je unix en windows classpath seperators loopt te mixen, maar dat kan een typo zijn. In ieder geval moet jij een ; gebruiken.
Ok, dan zal ik dat ffies aanpassen, moment.

Nee, krijg nogsteeds dezelfde error... :'(

[ Voor 8% gewijzigd door Mishmash op 12-01-2006 14:22 ]


  • bodiam
  • Registratie: December 2001
  • Laatst online: 31-12-2024
Mishmash schreef op donderdag 12 januari 2006 @ 14:08:
Dit is toch de juiste command regel:

java -jar Heinz_Bier.jar -cp .:postgresql-8.1-404.jdbc.jar
Ik kan me haast niet voorstellen dat je wilt dat je Heinz_Bier programma als argument het classpath krijgt ;). Probeer dit eens:

code:
1
java -cp .;postgresql-8.1-404.jdbc.jar -jar Heinz_Bier.jar

[ Voor 9% gewijzigd door bodiam op 12-01-2006 14:31 ]


  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Helaas, dezelfde foutmelding...

  • bodiam
  • Registratie: December 2001
  • Laatst online: 31-12-2024
Onmogelijk. Tenzij de lib niet zo heet, niet in dezelfde directory staat als de jar, of in de jar niet de juiste classes zitten. Er van uitgaande dat je dezelfde foutmelding krijgt, wat gebeurt er als je een tar -tvf <naam van lib>.jar doet? Kun je die output eens tonen?

[edit]
overigens, net heette die lib nog postgresql-8.1-04.jdbc3.jar, en nu plotseling postgresql-8.1-404.jar ofzo? Wat is er gebeurd met de oude naam?

[ Voor 17% gewijzigd door bodiam op 12-01-2006 14:39 ]


  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Bodiam, zit je toevallig op school? Ik zit in het studielandschap op de 7e ;)

  • bodiam
  • Registratie: December 2001
  • Laatst online: 31-12-2024
Mishmash schreef op donderdag 12 januari 2006 @ 14:40:
Bodiam, zit je toevallig op school? Ik zit in het studielandschap op de 7e ;)
Helaas, ik doe deeltijd ;-)

Is het al gelukt?

  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Nee nogsteeds niet gelukt. Op dit moment staan de 2 volgende bestanden in de map dist:

Heinz_bier.jar
postgresql.jar (bestandsnaam aangepast ivm met tikfouten...)

Ik heb in mijn libraries de bestandsnaam van postgresql aangepast, echter werkt het nogsteeds niet.

Ik kan niet tarren want ik draai windhoos hier, geen linux ;)

  • bodiam
  • Registratie: December 2001
  • Laatst online: 31-12-2024
Mishmash schreef op donderdag 12 januari 2006 @ 14:43:
Nee nogsteeds niet gelukt. Op dit moment staan de 2 volgende bestanden in de map dist:

Heinz_bier.jar
postgresql.jar (bestandsnaam aangepast ivm met tikfouten...)

Ik heb in mijn libraries de bestandsnaam van postgresql aangepast, echter werkt het nogsteeds niet.

Ik kan niet tarren want ik draai windhoos hier, geen linux ;)
Excuses, ik bedoelde geen tarren, ik bedoelde jarren. Die heb je wel, die staat in de bin dir van je Java installatie folder.

  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Hier de output van jar -tvf Heinz_Bier.jar:

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
     0 Thu Jan 12 14:12:24 CET 2006 META-INF/
   191 Thu Jan 12 14:12:22 CET 2006 META-INF/MANIFEST.MF
     0 Thu Jan 12 12:57:28 CET 2006 heinzbier/
 45624 Wed Jan 11 12:37:26 CET 2006 Logo.jpg
   758 Thu Jan 12 09:53:02 CET 2006 heinzbier/Bestelling$1.class
  5976 Thu Jan 12 09:53:02 CET 2006 heinzbier/Bestelling.class
   870 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_klant_toevoegen$1.class

   870 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_klant_toevoegen$2.class

   870 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_klant_toevoegen$3.class

   870 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_klant_toevoegen$4.class

   838 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_klant_toevoegen$5.class

   838 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_klant_toevoegen$6.class

 22049 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_klant_toevoegen.class
   828 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_toevoegen$1.class
   828 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_toevoegen$2.class
   828 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_toevoegen$3.class
   796 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_toevoegen$4.class
  9322 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_toevoegen.class
   905 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_wijzigen_verwijderen$1.
class
   873 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_wijzigen_verwijderen$2.
class
   873 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_wijzigen_verwijderen$3.
class
   873 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_wijzigen_verwijderen$4.
class
   905 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_wijzigen_verwijderen$5.
class
   905 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_wijzigen_verwijderen$6.
class
 15116 Wed Jan 11 12:32:56 CET 2006 heinzbier/Bestelling_wijzigen_verwijderen.cl
ass
   761 Thu Jan 12 09:53:02 CET 2006 heinzbier/Factuur_printen$1.class
   793 Thu Jan 12 09:53:02 CET 2006 heinzbier/Factuur_printen$2.class
   793 Thu Jan 12 09:53:02 CET 2006 heinzbier/Factuur_printen$3.class
  9038 Thu Jan 12 09:53:02 CET 2006 heinzbier/Factuur_printen.class
   891 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_betalingcontroleren$1.cl
ass
   891 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_betalingcontroleren$2.cl
ass
  1194 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_betalingcontroleren$3.cl
ass
   859 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_betalingcontroleren$4.cl
ass
 12213 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_betalingcontroleren.clas
s
   800 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_schade$1.class
   768 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_schade$2.class
   800 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_schade$3.class
   768 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_schade$4.class
  9525 Wed Jan 11 12:32:56 CET 2006 heinzbier/Financien_schade.class
   709 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$1.class
   711 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$10.class
   712 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$11.class
   712 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$12.class
   712 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$13.class
   517 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$14.class
   709 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$2.class
   709 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$3.class
   709 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$4.class
   709 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$5.class
   709 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$6.class
   709 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$7.class
   709 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$8.class
   709 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI$9.class
 11179 Tue Jan 10 15:55:24 CET 2006 heinzbier/GUI.class
   870 Thu Jan 12 10:13:56 CET 2006 heinzbier/Gebruikersbeheer_toevoegen$1.class

   870 Thu Jan 12 10:13:56 CET 2006 heinzbier/Gebruikersbeheer_toevoegen$2.class

   870 Thu Jan 12 10:13:56 CET 2006 heinzbier/Gebruikersbeheer_toevoegen$3.class

  7480 Thu Jan 12 10:13:56 CET 2006 heinzbier/Gebruikersbeheer_toevoegen.class
   947 Wed Jan 11 12:33:52 CET 2006 heinzbier/Gebruikersbeheer_wijzigen_verwijde
ren$1.class
   915 Wed Jan 11 12:33:52 CET 2006 heinzbier/Gebruikersbeheer_wijzigen_verwijde
ren$2.class
   947 Wed Jan 11 12:33:52 CET 2006 heinzbier/Gebruikersbeheer_wijzigen_verwijde
ren$3.class
   947 Wed Jan 11 12:33:52 CET 2006 heinzbier/Gebruikersbeheer_wijzigen_verwijde
ren$4.class
 10143 Wed Jan 11 12:33:52 CET 2006 heinzbier/Gebruikersbeheer_wijzigen_verwijde
ren.class
  1514 Wed Jan 11 12:33:52 CET 2006 heinzbier/Hoofdscherm.class
   793 Wed Jan 11 12:33:52 CET 2006 heinzbier/Klanten_bestand$1.class
   761 Wed Jan 11 12:33:52 CET 2006 heinzbier/Klanten_bestand$2.class
   761 Wed Jan 11 12:33:52 CET 2006 heinzbier/Klanten_bestand$3.class
  8438 Wed Jan 11 12:33:52 CET 2006 heinzbier/Klanten_bestand.class
   723 Tue Jan 10 15:55:24 CET 2006 heinzbier/Login$1.class
   723 Tue Jan 10 15:55:24 CET 2006 heinzbier/Login$2.class
   523 Tue Jan 10 15:55:24 CET 2006 heinzbier/Login$3.class
  4804 Tue Jan 10 15:55:24 CET 2006 heinzbier/Login.class
   789 Thu Jan 12 09:53:02 CET 2006 heinzbier/Loods_pakbonprinten$1.class
   821 Thu Jan 12 09:53:02 CET 2006 heinzbier/Loods_pakbonprinten$2.class
   821 Thu Jan 12 09:53:02 CET 2006 heinzbier/Loods_pakbonprinten$3.class
  8499 Thu Jan 12 09:53:02 CET 2006 heinzbier/Loods_pakbonprinten.class
  1776 Tue Jan 10 15:55:24 CET 2006 heinzbier/Main.class
  2804 Thu Jan 12 09:53:02 CET 2006 heinzbier/PrintUtilities.class
   863 Tue Jan 10 15:55:24 CET 2006 heinzbier/Statistieken_bestellingen$1.class
  3859 Tue Jan 10 15:55:24 CET 2006 heinzbier/Statistieken_bestellingen.class
   782 Thu Jan 12 13:13:58 CET 2006 heinzbier/Statistieken_omzet$1.class
  1553 Thu Jan 12 10:57:34 CET 2006 heinzbier/Statistieken_omzet$ComboModel.clas
s
 12455 Thu Jan 12 13:13:58 CET 2006 heinzbier/Statistieken_omzet.class
   793 Wed Jan 11 12:33:52 CET 2006 heinzbier/Voorraad_beheer$1.class
   793 Wed Jan 11 12:33:52 CET 2006 heinzbier/Voorraad_beheer$2.class
   793 Wed Jan 11 12:33:52 CET 2006 heinzbier/Voorraad_beheer$3.class
   761 Wed Jan 11 12:33:52 CET 2006 heinzbier/Voorraad_beheer$4.class
  8315 Wed Jan 11 12:33:52 CET 2006 heinzbier/Voorraad_beheer.class
    20 Thu Jan 12 12:57:58 CET 2006 heinzbier/manifest.txt
  1490 Thu Jan 12 10:53:00 CET 2006 heinzbier/testpanel$ComboModel.class
  1107 Thu Jan 12 10:53:00 CET 2006 heinzbier/testpanel.class

  • bodiam
  • Registratie: December 2001
  • Laatst online: 31-12-2024
ik bedoelde die postgres lib..... ;)

(dus: jar -tvf postgresql.jar)

[ Voor 33% gewijzigd door bodiam op 12-01-2006 14:52 ]


  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Ok, komt ie nog een keer!
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
     0 Sat Nov 05 22:46:40 CET 2005 META-INF/
   107 Sat Nov 05 22:46:38 CET 2005 META-INF/MANIFEST.MF
     0 Sat Nov 05 22:46:36 CET 2005 org/
     0 Sat Nov 05 22:46:38 CET 2005 org/postgresql/
     0 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/
     0 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/
  2158 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/ConnectionFactoryImpl
$SimpleResultHandler.class
 10857 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/ConnectionFactoryImpl
.class
  4956 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/ProtocolConnectionImp
l.class
  2291 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/QueryExecutorImpl$1.c
lass
  1790 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/QueryExecutorImpl$2.c
lass
  2368 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/QueryExecutorImpl$3.c
lass
 12399 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/QueryExecutorImpl.cla
ss
  5153 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/FastpathParameterList
.class
  2299 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/V2Query.class
  5355 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v2/SimpleParameterList.c
lass
  1905 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/ConnectionFactory.class
   839 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/ProtocolConnection.class

   773 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/PGStream$1.class
  7167 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/PGStream.class
  4819 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/Encoding.class
  1064 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/QueryExecutor.class
   280 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/Query.class
   685 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/ParameterList.class
   508 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/ResultHandler.class
   147 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/ResultCursor.class
  4247 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/Field.class
     0 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/
  4437 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/CompositeParameterLis
t.class
   336 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/V3ParameterList.class

  6578 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/SimpleParameterList.c
lass
  1867 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/CompositeQuery.class
   217 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/V3Query.class
  2983 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/SimpleQuery.class
   774 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/ConnectionFactoryImpl
$UnsupportedProtocolException.class
   232 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/ConnectionFactoryImpl
$1.class
 10338 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/ConnectionFactoryImpl
.class
  4847 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/ProtocolConnectionImp
l.class
  1916 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/QueryExecutorImpl$Err
orTrackingResultHandler.class
  2368 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/QueryExecutorImpl$1.c
lass
  2291 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/QueryExecutorImpl$2.c
lass
  2067 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/QueryExecutorImpl$3.c
lass
 27442 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/QueryExecutorImpl.cla
ss
  1436 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/v3/Portal.class
   970 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/BaseConnection.class
   306 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/BaseResultSet.class
   595 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/BaseStatement.class
   959 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/Notification.class
   939 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/Oid.class
   522 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/PGBindException.class
  1244 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/Utils.class
     0 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/
  2437 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGBigDecimal.class

   161 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGType.class
  2640 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGBoolean.class
  2354 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGByte.class
  2708 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGDouble.class
  2704 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGFloat.class
  2544 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGInteger.class
  2700 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGLong.class
  2708 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGNumber.class
  2362 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGShort.class
  3023 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGString.class
   727 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/types/PGUnknown.class
  3422 Sat Nov 05 22:46:36 CET 2005 org/postgresql/core/UTF8Encoding.class
   211 Sat Nov 05 22:46:36 CET 2005 org/postgresql/PGNotification.class
     0 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/
  1388 Sat Nov 05 22:46:36 CET 2005 org/postgresql/util/StreamWrapper.class
  2885 Sat Nov 05 22:46:36 CET 2005 org/postgresql/util/PSQLException.class
  4307 Sat Nov 05 22:46:36 CET 2005 org/postgresql/util/ServerErrorMessage.class

  2827 Sat Nov 05 22:46:36 CET 2005 org/postgresql/util/PSQLState.class
  1245 Sat Nov 05 22:46:36 CET 2005 org/postgresql/util/PGobject.class
  1434 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/GT.class
  1523 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/MD5Digest.class
  6707 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/PGInterval.class
  1509 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/PGbytea.class
  2448 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/PGmoney.class
  2542 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/PGtokenizer.class
  1610 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/PSQLDriverVersion.class
   908 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/PSQLWarning.class
 15710 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/UnixCrypt.class
  5811 Sat Nov 05 22:46:38 CET 2005 org/postgresql/util/Base64.class
   957 Sat Nov 05 22:46:36 CET 2005 org/postgresql/PGConnection.class
     0 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/
  1086 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/TimestampUtils$ParsedTi
mestamp.class
   207 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/TimestampUtils$1.class
 10536 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/TimestampUtils.class
     0 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/optional/
   355 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/optional/ConnectionPool
.class
   357 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/optional/PoolingDataSou
rce.class
   353 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/optional/SimpleDataSour
ce.class
 10141 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/AbstractJdbc2Array.clas
s
   555 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/AbstractJdbc2Blob.class

  1504 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/AbstractJdbc2BlobClob$L
OIterator.class
  3419 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/AbstractJdbc2BlobClob.c
lass
  2132 Sat Nov 05 22:46:36 CET 2005 org/postgresql/jdbc2/AbstractJdbc2Clob.class

  2169 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2Connection
$TransactionCommandHandler.class
   234 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2Connection
$1.class
 18616 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2Connection
.class
  6802 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/TypeInfoCache.class
 61157 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2DatabaseMe
taData.class
  2252 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2ResultSet$
CursorResultHandler.class
   942 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2ResultSet$
PrimaryKey.class
   824 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2ResultSet$
NullObject.class
 44574 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2ResultSet.
class
  8528 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2ResultSetM
etaData.class
  1213 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/ResultWrapper.class
  2596 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2Statement$
StatementResultHandler.class
  3354 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2Statement$
BatchResultHandler.class
 42115 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/AbstractJdbc2Statement.
class
 11791 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc2/EscapedFunctions.class
     0 Sat Nov 05 22:46:38 CET 2005 org/postgresql/largeobject/
  3914 Sat Nov 05 22:46:36 CET 2005 org/postgresql/largeobject/LargeObjectManage
r.class
  3887 Sat Nov 05 22:46:36 CET 2005 org/postgresql/largeobject/LargeObject.class

  1732 Sat Nov 05 22:46:36 CET 2005 org/postgresql/largeobject/BlobOutputStream.
class
  1817 Sat Nov 05 22:46:38 CET 2005 org/postgresql/largeobject/BlobInputStream.c
lass
     0 Sat Nov 05 22:46:36 CET 2005 org/postgresql/fastpath/
  3874 Sat Nov 05 22:46:36 CET 2005 org/postgresql/fastpath/Fastpath.class
  1346 Sat Nov 05 22:46:36 CET 2005 org/postgresql/fastpath/FastpathArg.class
   499 Sat Nov 05 22:46:36 CET 2005 org/postgresql/PGStatement.class
     0 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/
     0 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/common/
  6030 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/common/BaseDataSource.clas
s
  3875 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/common/PGObjectFactory.cla
ss
  5611 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/common/PooledConnectionImp
l$ConnectionHandler.class
  3576 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/common/PooledConnectionImp
l$StatementHandler.class
  5991 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/common/PooledConnectionImp
l.class
  1685 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/PGPoolingDataSource$1.clas
s
  7483 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/PGPoolingDataSource.class
  2198 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/PGConnectionPoolDataSource
.class
  1187 Sat Nov 05 22:46:36 CET 2005 org/postgresql/ds/PGSimpleDataSource.class
   207 Sat Nov 05 22:46:36 CET 2005 org/postgresql/PGRefCursorResultSet.class
   311 Sat Nov 05 22:46:36 CET 2005 org/postgresql/PGResultSetMetaData.class
     0 Sat Nov 05 22:46:36 CET 2005 org/postgresql/geometric/
  2920 Sat Nov 05 22:46:36 CET 2005 org/postgresql/geometric/PGbox.class
  3314 Sat Nov 05 22:46:36 CET 2005 org/postgresql/geometric/PGpoint.class
  3091 Sat Nov 05 22:46:36 CET 2005 org/postgresql/geometric/PGcircle.class
  2793 Sat Nov 05 22:46:36 CET 2005 org/postgresql/geometric/PGline.class
  2793 Sat Nov 05 22:46:36 CET 2005 org/postgresql/geometric/PGlseg.class
  3303 Sat Nov 05 22:46:36 CET 2005 org/postgresql/geometric/PGpath.class
  2330 Sat Nov 05 22:46:36 CET 2005 org/postgresql/geometric/PGpolygon.class
     0 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/
  1607 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/AbstractJdbc3Blob.class

  1505 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/AbstractJdbc3Clob.class

  4873 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/AbstractJdbc3Connection
.class
  3121 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/AbstractJdbc3DatabaseMe
taData.class
  3332 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/AbstractJdbc3ResultSet.
class
 14615 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/AbstractJdbc3Statement.
class
  1355 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3Array.class
   492 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3Blob.class
  1325 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3CallableStatement.
class
   915 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3PreparedStatement.
class
  2025 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3Statement.class
  2367 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3Connection.class
   492 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3Clob.class
   352 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3ConnectionPool.cla
ss
   550 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3DatabaseMetaData.c
lass
   354 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3PoolingDataSource.
class
  2648 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3ResultSet.class
   350 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3SimpleDataSource.c
lass
  2338 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/PSQLParameterMetaData.c
lass
  2253 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/PSQLSavepoint.class
   584 Sat Nov 05 22:46:38 CET 2005 org/postgresql/jdbc3/Jdbc3ResultSetMetaData.
class
     0 Sat Nov 05 22:46:38 CET 2005 org/postgresql/ssl/
  2906 Sat Nov 05 22:46:38 CET 2005 org/postgresql/ssl/MakeSSL.class
  1139 Sat Nov 05 22:46:38 CET 2005 org/postgresql/ssl/NonValidatingFactory$NonV
alidatingTM.class
  1104 Sat Nov 05 22:46:38 CET 2005 org/postgresql/ssl/NonValidatingFactory.clas
s
  1694 Sat Nov 05 22:46:38 CET 2005 org/postgresql/ssl/WrappedFactory.class
   724 Sat Nov 05 22:46:38 CET 2005 org/postgresql/Driver$1.class
  2510 Sat Nov 05 22:46:38 CET 2005 org/postgresql/Driver$ConnectThread.class
 13128 Sat Nov 05 22:46:38 CET 2005 org/postgresql/Driver.class
     0 Sat Nov 05 22:46:38 CET 2005 org/postgresql/xa/
  7505 Sat Nov 05 22:46:38 CET 2005 org/postgresql/xa/PGXAConnection.class
  1408 Sat Nov 05 22:46:38 CET 2005 org/postgresql/xa/PGXADataSource.class
   863 Sat Nov 05 22:46:38 CET 2005 org/postgresql/xa/PGXAException.class
  2231 Sat Nov 05 22:46:38 CET 2005 org/postgresql/xa/RecoveredXid.class
     0 Sat Nov 05 04:13:02 CET 2005 org/postgresql/translation/
 13690 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_cs.class

 18845 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_de.class

  4994 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_es.class

 22194 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_fr.class

 22360 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_it.class

  2933 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_nl.class

 12017 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_pl.class

 23752 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_pt_BR.cl
ass
 11164 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_ru.class

 22985 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_tr.class

 12294 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_zh_CN.cl
ass
 14838 Sat Nov 05 04:12:58 CET 2005 org/postgresql/translation/messages_zh_TW.cl
ass

  • Mishmash
  • Registratie: Juli 2002
  • Laatst online: 13-12-2023
Het werkt :D

Ik heb een proggie gevonden dat Exe4j heet, die doet het vlekkeloos! Install4j is handig als je een installatie programma wilt bouwen voor je creatie!

  • Standeman
  • Registratie: November 2000
  • Laatst online: 09:28

Standeman

Prutser 1e klasse

Mishmash schreef op donderdag 12 januari 2006 @ 16:07:
Het werkt :D

Ik heb een proggie gevonden dat Exe4j heet, die doet het vlekkeloos! Install4j is handig als je een installatie programma wilt bouwen voor je creatie!
Natuurlijk fantastisch dat het werkt....

Maar ik kan je echter wel aanraden om er achter te komen waarom het niet werkte.. Daar leer je namelijk veel meer van en geeft je een beter begrip van de JVM (als dat 1 van je doelen is!).

* Standeman heeft er altijd een hekel aan als hij niet weet waarom iets wel of niet werkt... (m.u.v. vrouwen :P)

The ships hung in the sky in much the same way that bricks don’t.


Verwijderd

java [-options] -jar jarfile [args...]
(to execute a jar file)
where options include:
-cp <class search path of directories and zip/jar files>
-classpath <class search path of directories and zip/jar files>
A ; separated list of directories, JAR archives,
and ZIP archives to search for class files.
Probeer dit eens:
C:\Documents and Settings\Joris\Bureaublad\Heinz Bier\dist>java -cp .;postgresql-8.1-04.jdbc3.jar -jar Heinz_Bier.jar
Pagina: 1