| Reading windows event file like event viewer from windows/system32/config/AppEvent.evt |
|
 |
Index ‹ java-programmer
|
- Previous
- 3
- surface plotAll
I want to see if Java can do the surface plot (traditional gird plot, not
contour or color)
THanks
- 3
- CORBA simulatorI'm looking for a CORBA simulator to help develop an application.
Does any of you have any experience to share or advice?
Bill
- 4
- how to create jar fileHi,
In help we can read:
To create a JAR file from your help files, make the top level help folder
the current folder. The jar command
descends recursively through the different directories and copies all of the
files to the JAR file.
Use the following steps to create a JAR file named my_help.jar from the
hierarchy example above:
C:\> cd ...\help (where "..." is the path above the \help folder) 1.
C:...\help> jar -cvf my_help.jar * 2.
The jar -cvf command copies all the files in the \help folder and in all
folders hierarchically beneath it into
a JAR file named my_help.jar. As the command creates the JAR file, it
reports its progress with output like
My error message:
"jar is not recoginized as an internal or external command, operable program
or
batch file"
please help me
Edd
- 5
- Good web host for JSPs?Hi;
I've been thinking of buying my own domain and setting up my own site.
My dream host would be
- nix based
- Java and JSP friendly.......for me making my own stuff
- PHP, python, perl, C++ - whatever technology friendly so I will be
free to learn
- reasonably price
I am also in registering my domain anonymously. Any good services?
Any suggestions?
Thanks
- 7
- How to get the root directory ?> I know how to get the user home directory with
> System.getProperty("user.home"), but I cannot find any
> system property to get the root directory in a file
> tree. You know, the "My PC" in Windows or the "/" directory
> in Unix. Is it possible with java ?
FileSystemView.getFileSystemView().getHomeDirectory()
or
FileSystemView.getFileSystemView().getRoots()[0];
____________
http://reader.imagero.com the best java image reader.
- 9
- chaning label sizes during runtimehi all,
I have a minor problem in my application (sorry I can't post any code,
so I'vm only asking for guidance in the general case, not this
specific one).
In my application I have a number of JLabels that gets their texts
changed during runtime. Unfortunatley it seems that they sometimes
become too wide for the panel they are in. The panel has room to grow
though (it is located in a jscrollpane).
I use
label.invalidate();
after each change, and
validateTree();
on the top container after all changes.
This gives me a somewhat strange behavour though.
On first run nothing happens (i.e the label get's cut)
on second run, the panel to the left shrinks a bit and the lables
there get's cut. On the third run all looks nice.
(run means updating of the labels, not a re-run of the application)
So what is the best way to handle this?
Should I invalidate, and revalidate myself? and if so when should that
be done?
All changes to components are executed in the EDT.
regards
Daniel
- 9
- Apache Poi set Date Format on a columnHi, I use Apache Poi to read/write from/to Excel.
I'm try to set a column of a sheet to show all values with correct
format "m/d/yy"
I'm used:
HSSFCellStyle cellStyle = wb.createCellStyle();
cellStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy"));
HSSFCell cellaData = row.createCell(new Integer(0).shortValue());
cellaData.setCellStyle(cellStyle);
cellaData.setCellValue(data);
This works fine, but format all cells of sheet and with much rows excel
return a warning.
I'm serching a method to format column entire.
Thank's Lorenzo
- 9
- extends JFileChooser ?Hi
In JFileChooser there are some JButton. I have a class called
PButton that extends JButton. I want JFileChooser use my class
"PButton" instead of JButton. HowTo?
thanks
from Peter (email***@***.com)
- 9
- 10
- Is there any basic base for a community website? (J2ee)Hi
I'm wondering if there is any basic "base" for a community website. With
things like support for user registration, login, individual homepages,
photo albums, sending messages, guestbooks, diaries and so on... And
ofcourse with optimised code (especially the code for the communicating with
the database).
I mean, I know these things have been written before, so it feels a bit
stupid to do it again, like reinventing the wheel.
What I'm looking for is a basic foundation, written in J2ee (Java/jsp), that
is easy to use as a base when making a community that should be able to
handle a large "population" (at least a few thousand simultanous users, and
holefully ten thousands or even houndred thousands at peak hours, in the
future).
Any suggestions?
/Jimi
- 11
- char array to numeric data types - fastest conversionI know i can convert the char array to a string then to the appropiate
numeric data types (float, double etc) however I'm doing this millions
of times and throughput is critical. Any ideas if there is SDK function
or some example code out there that removes the middle step of creating
a string object.
TIA
- 13
- Need help with regex pleaseI'm trying to validate a phone number value. I have passed the value
to my constructor as a String type because I would like to catch the
leading zero in the number. I want to iterate through the String
phoneNum and confirm that only [0-9] were entered as characters of
phoneNum. Below is my code attempt which fails:
phoneNum = phoneNum.trim();
Pattern p = Pattern.compile("\\d");
boolean found = p.matcher(phoneNum).lookingAt();
if (!found){
System.out.println("Error in contact phone number");
}
else{
this.phoneNum = phoneNum;
System.out.println("Phone number was successfully
assigned");
}
Could anyone post code/ideas/principles that could make this idea
work, please?
Thanks,
Rick
- 13
- Looking for comments on Technology RiversDoes anyone have any good, bad, or neutral opinions on Technology
Rivers in VA, USA as a company to work for or with? Has anyone
here had any contact with them? I'm currently engaged in a job
search and know little about them besides what's on their wbsite.
Any input would be appreciated. Either posts or direct emails
are welcome.
Thanks.
--Joe
- 13
- java numerical library recomendationHi,
I'm a relative newcomer to Java and I was wondering if there any good
numerical libraries (on the lines of GSL for C) available? Specifically
I'm looking for linear algebra routines, least squares and minimization
routines. I'm interested mainly in Opensource libraries but I am also
open to commercial libraries.
Thanks,
- 16
- Requesting re-pack'ing of FrameHi all,
I've implemented my own AWT component which determines a "preferred
size" by itself. This component is added to a Frame, which is at the
center of a BorderLayout in a Frame which gets pack()ed. The frame is
also not resizable, because I must ensure this component always acutally
has its preferred size. This works fine so far.
However, during execution time this preferred size changes; is there a
*generic* way to propagate this message up to the Frame so it re-pack()s?
I do not want to use a succession of getParent() until I reach the Frame
and call pack() on it, as this component might be used in a situation
which does not allow this in the future (maybe an Applet or in an
resizable/unpacked Frame as part of a more complex layout).
Is there any way to achieve this? I.e., propagate to the Frame/layout
that the preferred size has changed and this should be considered anew?
Many thanks in advance,
Daniel
--
Got two Dear-Daniel-Instant Messages
by MSN, associate ICQ with stress --
so please use good, old E-MAIL!
|
| Author |
Message |
veeru

|
Posted: 2007-7-18 14:03:00 |
Top |
java-programmer, Reading windows event file like event viewer from windows/system32/config/AppEvent.evt
hi ,any one can help ,me to solve my problem.
i m talking about reading AppEvent.evt SecEvent.evt SysEvent.evt files
which basically resides in C:\WINDOWS\system32\config folder of
windows xp.if we want to open that files and our computer is on n/w
than some services used all three files and i m not able to open that
files manually.if i want to read that files than i have two options
either read by event viewer or copy this file and to another place and
open it in vc++.
i have to read or parse that file by writing a pure java parser
without using any dll bcz that files runs under linux there is another
option to use so(shared object files working as a dll in linux) but i
don't want to depend on dll and so files.
one another way microsoft ;log parser but i m not sure that it
will run on linux or not ,simply i want to write independent java
program using only java based open source api
so plz give me a best approach to read or parse this event files when
they r locked by another applications or services.
this is the link which help u to understand windows event log format
and it has links of sample program written in vc++,c#,asp.net,c+
+,php .
http://www.whitehats.ca/main/members/Malik/malik_eventlogs/malik_eventlogs.html
i follow the php program approach but i got only source name,computer
name,description but not able to parse this things individually and i
also need date,event id,event type.
then i got another code from code project site,which has functionality
to read event logs it is using log4j to read this event files.and
display ti on swing interface but i want only a simple program which
did only reading or parsing event log files.
http://www.codeproject.com/csharp/tracetool.asp
|
| |
|
| |
 |
veeru

|
Posted: 2007-7-18 14:07:00 |
Top |
java-programmer >> Reading windows event file like event viewer from windows/system32/config/AppEvent.evt
hi ,any one can help ,me to solve my problem.
i m talking about reading AppEvent.evt SecEvent.evt SysEvent.evt files
which basically resides in C:\WINDOWS\system32\config folder of
windows xp.if we want to open that files and our computer is on n/w
than some services used all three files and i m not able to open that
files manually.if i want to read that files than i have two options
either read by event viewer or copy this file and to another place and
open it in vc++.
i have to read or parse that file by writing a pure java parser
without using any dll bcz that files runs under linux there is another
option to use so(shared object files working as a dll in linux) but i
don't want to depend on dll and so files.
one another way microsoft ;log parser but i m not sure that it
will run on linux or not ,simply i want to write independent java
program using only java based open source api
so plz give me a best approach to read or parse this event files when
they r locked by another applications or services.
this is the link which help u to understand windows event log format
and it has links of sample program written in vc++,c#,asp.net,c+
+,php .
http://www.whitehats.ca/main/members/Malik/malik_eventlogs/malik_eventlogs.html
i follow the php program approach but i got only source name,computer
name,description but not able to parse this things individually and i
also need date,event id,event type.
then i got another code from code project site,which has functionality
to read event logs it is using log4j to read this event files.and
display ti on swing interface but i want only a simple program which
did only reading or parsing event log files.
http://www.codeproject.com/csharp/tracetool.asp
|
| |
|
| |
 |
Roedy Green

|
Posted: 2007-7-18 15:13:00 |
Top |
java-programmer >> Reading windows event file like event viewer from windows/system32/config/AppEvent.evt
On Wed, 18 Jul 2007 06:06:41 -0000, veeru <email***@***.com>
wrote, quoted or indirectly quoted someone who said :
>http://www.whitehats.ca/main/members/Malik/malik_eventlogs/malik_eventlogs.html
this is a binary format, presumably Little endian. You don't want a
parser. You want some custom code that reads it field by field. Java
has no built in methods to read this. The closest it has is
DataInputStream which reads big-endian binary. However, I have
written the analogous Little-endian version see
http://mindprod.com/products1.html#LEDATASTREAM
Source code is included.
--
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
|
| |
|
| |
 |
Jeff Higgins

|
Posted: 2007-7-18 19:40:00 |
Top |
java-programmer >> Reading windows event file like event viewer from windows/system32/config/AppEvent.evt
veeru
> hi>
> this is the link which help u to understand windows event log format
> and it has links of sample program written in vc++,c#,asp.net,c+
> +,php .
>
Didn't help me understand Windows Event Log format. No sir.
Some quotes from the linked page.
[quote]
Now ... we'll take a look at the binary format of these logs
and attempt to break out the fields.
I have not managed to break out every field yet but in all
honesty I have not devoted more thana few evenings to the
task and I have not verified this information with external sources
(its hard to find any...).
I've found a few docs on Event Log format ...
codeproject.com
broken link
Below is what I imagined comprised an eventlog entry.
So... here is what I believe comprises a Windows Event Log in binary format:
[unquote]
|
| |
|
| |
 |
Lew

|
Posted: 2007-7-18 21:31:00 |
Top |
java-programmer >> Reading windows event file like event viewer from windows/system32/config/AppEvent.evt
veeru
>> this is the link which help u [sic] to understand windows event log format
>> and it has links of sample program written in vc++,c#,asp.net,c+
>> +,php .
Jeff Higgins wrote:
> Didn't help me understand Windows Event Log format. No sir.
> Some quotes from the linked page.
>
> [quote]
> Now ... we'll take a look at the binary format of these logs
> and attempt to break out the fields.
> I have not managed to break out every field yet but in all
> honesty I have not devoted more thana few evenings to the
> task and I have not verified this information with external sources
> (its hard to find any...).
>
> I've found a few docs on Event Log format ...
>
> codeproject.com
> broken link
>
> Below is what I imagined comprised an eventlog entry.
> So... here is what I believe comprises a Windows Event Log in binary format:
> [unquote]
I prefer the more formal usage of "comprise": "a log entry comprises the
elements ..."; I hate to see "comprise" used as if it were "constitute".
A very minor point in the context of the general lack of information you
report that this site evinces.
--
Lew
|
| |
|
| |
 |
Lew

|
Posted: 2007-7-18 21:46:00 |
Top |
java-programmer >> Reading windows event file like event viewer from windows/system32/config/AppEvent.evt
veeru wrote:
> hi ,any one can help ,me to solve my problem.
They'd be more likely to help if you avoid multi-posting, that is, posting the
same message independently to different newsgroups. Your best strategy is to
pick one.
There is a FAQ for these two newsgroups (to which I've cross-posted your
multipost) that you might choose to read. mindprod.com also has an excellent
article on newsgroup netiquette that you had best choose to read.
--
Lew
|
| |
|
| |
 |
Jeff Higgins

|
Posted: 2007-7-18 21:48:00 |
Top |
java-programmer >> Reading windows event file like event viewer from windows/system32/config/AppEvent.evt
Lew wrote:
>>
>> Below is what I imagined comprised an eventlog entry.
>> So... here is what I believe comprises a Windows Event Log in binary
>> format:
>> [unquote]
>
> I prefer the more formal usage of "comprise": "a log entry comprises the
> elements ..."; I hate to see "comprise" used as if it were "constitute".
>
I agree. Maybe someone who reads this thread of discussion and takes
a greater interest will contact the author and report our objections to him.
:-)
JH
|
| |
|
| |
 |
Jeff Higgins

|
Posted: 2007-7-18 22:45:00 |
Top |
java-programmer >> Reading windows event file like event viewer from windows/system32/config/AppEvent.evt
"Lew" <email***@***.com> wrote in message
news:email***@***.com...
> veeru
>>> this is the link which help u [sic] to understand windows event log
>>> format
>>> and it has links of sample program written in vc++,c#,asp.net,c+
>>> +,php .
>
> Jeff Higgins wrote:
>> Didn't help me understand Windows Event Log format. No sir.
>> Some quotes from the linked page.
>>
>> [quote]
>> Now ... we'll take a look at the binary format of these logs
>> and attempt to break out the fields.
>> I have not managed to break out every field yet but in all
>> honesty I have not devoted more thana few evenings to the
>> task and I have not verified this information with external sources
>> (its hard to find any...).
>>
>> I've found a few docs on Event Log format ...
>>
>> codeproject.com
>> broken link
>>
>> Below is what I imagined comprised an eventlog entry.
>> So... here is what I believe comprises a Windows Event Log in binary
>> format:
>> [unquote]
>
> I prefer the more formal usage of "comprise": "a log entry comprises the
> elements ..."; I hate to see "comprise" used as if it were "constitute".
>
> A very minor point in the context of the general lack of information you
> report that this site evinces.
>
Oops, bad citation style on my part.
My admixture of quotation and paraphrase
should probably read:
" ... we'll take a look at the binary format of these logs and attempt to
break out the fields.
I have not managed to break out every field yet but in all honesty I have
not devoted more
thana few evenings to the task and I have not verified this information with
external sources
(its hard to find any...)."
"I've found a few docs on Event Log format"
Here the author includes two links.
One of which was broken at the time I attempted to follow it.
Neither of which pointed to the "horses' mouth", which is here:
<http://msdn2.microsoft.com:80/en-us/library/bb309026.aspx>
"Below is what I imagined comprised an eventlog entry."
"So... here is what I believe comprises a Windows Event Log in binary
format:"
WAGs with little resemblance to:
<http://msdn2.microsoft.com:80/en-us/library/bb309026.aspx>
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- Creating XSD filesHello,
I am very new to XML and XSD. I am to create an application that can
generate a new XSD file from a set of tag names that the user
provides. Any guidlines will be appreciated.
Thanks.
- 2
- Mozilla Firefox bookmarks exporting.
Hi,
I use mozilla firefox and feel very comfortable with that. I have
accumulated a lot of interesting websites in my bookmarks. Now if I
want to switch to a other machine how can preserve my old set of
bookmarks?
Thank you in advance,
Shaji.
- 3
- SCPJ Certification And Career PathHi All,
I took my "Data Structures And Advanced Programming" coursework at
Berkeley back when they taught this in Java 1.1. Since that time I
have kept active in other languages, but haven't delved deeply into
J2EE, for example. I am very interested in JSP/Servlets and the
forthcoming Java HTML Tag Library. Currently my most proficient
language is PHP, where I am applying all my oo theory but finding the
language lacks some hard edges.
In short, I want to get back into Java development work, ideally on
the web. Is getting a Sun Certified Programmer certification going to
help me in this regard? Do employers look seriously at this? Or should
I try to get my foot back into the door through more hands-on
experience? Maybe work on an open-source project for awhile? My skills
are very transferrable and I can pick up the finer points of Java
again quickly. I'm just interested in the most bang for my buck here.
Thanks for your thoughts.
Regards,
Robert
email***@***.com
http://www.peakepro.com
- 4
- Sun Webcast Today & Tomorrow: Replacements for Windows Desktop w.3d Java Features
Today & tomorrow Sun Webcasts announce new
---------------- projects that include
Java and 3d Java apps in packages designed
to replace Microsoft packages with packages
based on Linux and Solaris bundleded with
Java, Open Office or Star Office, and Mozilla.
| Opening Address & Welcome
| ------------------------
| by Sun CEO Scott McNealy
|
| Sun's Software Strategy
| -- Sun EVP Jonathan Schwartz
|
| September 16 9:00 a.m. - 11:30 a.m. (PDT)
|
| ------------------------------------------
|
| Slashing Cost & Complexity from the
| Desktop to the Data Center
|
| -- Sun EVP Mark Tolliver
|
| 10:00 - 10:30 a.m. (PDT)
| LIVE Chat with Sun CEO Scott McNealy
|
| September 17 9:00 - 9:45 a.m. (PDT)
|
http://www.sun.com/bignews/
3D Desktop Demo ( java.net OpengGL bindings )
---------------
SUN DECLARES LINUX DESKTOP READY FOR PRIMETIME
|
| Java Technology a Key Feature of Mad Hatter
|-------------------------------------------
| Sun's Java technology on the desktop is also
| being enhanced for Project Mad Hatter providing
| a native GNOME look and feel for all Java
| applications.
|
| The innovative 3D desktop demo that wowed the crowd
| during the keynote was built using Java technology
| on Linux with Java for Open GL bindings which
| Sun recently open sourced at java.net.
|
| Java technology is pervasive on the desktop as it
| now runs on 550 million personal computers via
| distribution arrangements with leading PC
| manufacturers.
|
http://www.sun.com/2003-0805/feature/index.html
Java & Java3d is used for Games ...
Java Games
-------------------------------------------------
http://javagaming.org/cgi-bin/JGNetForums/YaBB.cgi
http://www.frontiernet.net/~imaging/games_with_java3d.html
http://www.frontiernet.net/~imaging/java_games.html
|
| Yahoo! Pool is a set of fun and realistic
| multiplayer online billiard games. The most popular
| games, 8-ball and 9-ball, allow players to break,
| choose shots, sink or scratch - just like
| the real thing.
|
| Players of Java technology based Yahoo! Pool games
| can enter game rooms based on skill level, and
| join in official Yahoo! Pool league tournaments.
|
http://java.com/en/explore/desktop/yahoo_pool.jsp
Human Animation with Java3d with VRML using Sun's Loader
---------------------------------------------------------
http://www.JavaGaming.org/cgi-bin/JGNetForums/YaBB.cgi?board=3D
http://www.JavaGaming.org/cgi-bin/JGNetForums/YaBB.cgi?board=3D;action=display;num=1060641747
I've been using Linux Red Hat 7.2 and it is
better and chearper than Windows though it does
need extra features ... which Sun is now adding.
-- Paul, Java Developer & Web Animator
--------------------------------------
Imaging the Imagined: Modeling with Math & a Keyboard
- 5
- paypal wholesale lv (paypal accept)(www good-saler cn )paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
paypal wholesale lv (paypal accept)(www good-saler cn )
paypal wholesale lv women (paypal accept)(www good-saler cn )
- 6
- Graphical Modelling Framework :(Hi,
I would be working on graphical modelling framework(GMF) for my thesis.
I couldnot find any tutorials on generating editors with Graphical
Modelling Framework at eclipse.org.
Please post in your suggestions.
Regards,
Madanagopal.
- 7
- RFC: Removal of arbortext-catalog and xt-catalogHi,
I would like to request comments if the arbortext-catalog and xt-catalog
[1] packages can be removed from the archives.
They have no reverse dependencies, do not occur in any build
dependencies, have only a few users [2], no active upstream and IMO
libxml-commons-resolver1.1-java offers the same functionality. However,
the package is not broken.
[1] http://packages.qa.debian.org/a/arbortext-catalog.html
[2] http://qa.debian.org/popcon.php?package=arbortext-catalog
If nobody objects, I will go for a removal request.
x-post to debian-devel, debian-sgml & debian-java
Regards, Daniel
--
To UNSUBSCRIBE, email to email***@***.com
with a subject of "unsubscribe". Trouble? Contact email***@***.com
- 8
- Java Applet Background ColorHi,
I am trying to set the background color of my applet to white but it
keeps coming up gray.Strangely when I open the applet on a local web
page (not live on the web), applet viewer (thru eclipse) or even live
on the web from my own home PC it appears white as expected. But from
every other machine that I access it the background is grey. Even when
i run it thru Eclips on other PCs the background is gray.I have tried
to set the background to white by calling
setBackground(Color.white)
and
setBackground(Color.WHITE)
from the init() method. In the HTML that calls the applet i also set
the <body bgcolor=#FFFF></body> and i do the same for the <HEAD>.
However from every other machine that I access my webpage/applet
except my own home PC the background still appears as gray.
Any ideas?
Thanks
WS
- 9
- [NEWBIE] Using a Java Class from a JSP PageHi all and please forgive me for this newbie question.
I should create and utilize the funcionts of a Java Class from a JSP
page contained in Tomcat.
I Should:
a) define a package containing this class and put it in the CLASSPATH
b) put the Java class in TomCat (folder WEB-INF/lib or WEB-INF/class)
c) a mix of both methods!??! (Classpath AND Tomcat)?!?
Thanks
Federico
- 10
- jpeg has poor quality when written back to diskHi,
I have written an app using netbeans that loads a jpeg image to a panel.
I can then do some processing on it. However if I do no
processing other than loading the file and saving it as a jpeg,
the file has very bad quality. (compressed further?)
How can I save an image file (jpeg) without losing quality?
- 11
- 12
- Eclipse is slow -- what's the alternative?I'm starting to get tired of Eclipse -- it's slow and pauses frequently.
Does anyone know if there is a way to speed it up? (I'm already giving it
plenty of memory). Are any speed improvements in the works?
Is it worth switching to another IDE?
- 13
- [strus] tiles, menu static?Hello,
I am building a struts application with tiles. The side is built as follows:
menu,footer, head and contents.
In my tiles def I have the following entries:
<tiles-definitions>
<definition name="webladen.welcomeLayout" path="/layouts/welcomeLayout.jsp">
<put name="title" value="Welcome..." />
<put name="header" value="/view/tiles/header.jsp" />
<put name="menu" value="/view/tiles/menu.jsp" />
<put name="footer" value="/view/tiles/footer.jsp" />
<put name="content" value="/view/tiles/contentFirst.jsp" />
</definition>
<definition name="webshop.katalog" extends="webshop.welcomeLayout">
<put name="content" value="/view/katalog.jsp"/>
</definition>
</tiles-definitions>
But when I click on the catalogue button, every area on the side is loading
new, but of course I only want the content-are to be loaded.
Could anybody tell me what I do wrong?
Thank you very much for your action!
Dennis
- 14
- Display xml file in JTree: Select information to be shown in node labelHi there,
I have managed to write a small java program that display an xml file
in a JTree. This was achieved by defining a suitable tree model. THe
program works...somehow. The nodes (elements and texts) are correctly
recognized, and the corresponding branches in the JTree can be opened
and closed. However, when I run the program, all the non-leaf nodes
(e. g. the element nodes) are displayed from the start tag to the end
tag including the tag delimiters. Is there any way to control what is
used as a "node label" in a JTree? Of course that could be done by
brute (e.g. by building the JTree from simple strings) but I believe
that this approach will destroy the tree structure of the underlying
xml file.
I have tried for some time to display xml data in a tree view, and a
java solution seemed to be the most "organic" one. So it would be
great if that program to be really made to work properly. Many thanks
for any idea how to achieve this! Piet
Here is the code:
import java.awt.*;
import java.awt.event.*;
import java.util.List;
import javax.swing.*;
import javax.swing.tree.*;
import javax.swing.event.*;
import javax.xml.parsers.*;
import org.w3c.dom.*;
public class XmlTreeDemo extends JFrame {
XmlTreeDemo(String title){
super(title);
try{
DocumentBuilderFactory IDocumentBuilderFactory
= DocumentBuilderFactory.newInstance();
DocumentBuilder IDocumentBuilder
= IDocumentBuilderFactory.newDocumentBuilder();
Document IDocument = IDocumentBuilder.parse("c:/test1.xml");
Node root = IDocument.getDocumentElement();
XmlTreeModel model = new XmlTreeModel(root);
JTree IJTree = new JTree();
IJTree.setModel(model);
getContentPane().add(new JScrollPane(IJTree),BorderLayout.CENTER);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
catch (Exception e){
System.err.println(e);
}
}
public static void main(String[] args){
XmlTreeDemo IJTreeDemo = new XmlTreeDemo("Xml tree demo");
IJTreeDemo.pack();
IJTreeDemo.show();
}
}
class XmlTreeModel implements TreeModel{
protected Node root;
public XmlTreeModel(Node root){
this.root = root;
}
public Object getRoot(){
return (Object)this.root;
}
public boolean isLeaf(Object node){
if ((((Node)node).getNodeType() == 7) || (((Node)node).getNodeType()
== 1)) return false;
return true;
}
public int getChildCount(Object parent){
return ((Node)parent).getChildNodes().getLength();
}
public Object getChild(Object parent,int index){
Node child = ((Node)parent).getChildNodes().item(index);
return (Object)child;
}
public int getIndexOfChild(Object parent, Object child){
NodeList childs = ((Node)parent).getChildNodes();
if (childs.getLength() == 0) return -1;
for (int i=0; i<childs.getLength(); i++){
if (childs.item(i) == (Node)child) return i;
}
return -1;
}
public void valueForPathChanged(TreePath path, Object newValue){
}
public void addTreeModelListener(TreeModelListener l){
}
public void removeTreeModelListener(TreeModelListener l){
}
}
- 15
- Natural logarithm method not recognisedGood day dear members of the comp.lang.java.programmer newsgroup.
I've got the following error message while trying to use the "logl()"
method (natural logarithm function) on my NetBeans IDE
symbol : method logl(double)
location: class org.me.mylib.fluidmechanics.DarcyLaw
wfr = 7.08e-3 * ko_dl * depth_dl * (pr_dl - wbp_dl) / (mu_dl *
bo_dl * ((logl(re_dl/rw_dl) - 0.75)));
1 error
Should I import any special mathematic library from NetBeans?
Many thanks.
Octavio
|
|
|