Request: DATA STRUCTURES files and examples

please could you provide me some resources Data Structure using Java (NetBeans)..
I hardly understood our instructor lessons..

mark2k7 wrote:
nonsense replies from nonsense people!! WTF!! Indeed. That's what everyone thought reading your question. Perhaps if you put a little more thought into asking specific, coherent questions you would get more useful answers.

Similar Messages

  • I have created a user in oracle BPM but it is not reflected in system-jazn-data.xml file and I am unable to authenticate that user to create context as needed in workflow client

    I have created a user in oracle BPM but it is not reflected in system-jazn-data.xml file and I am unable to authenticate that user to create context as needed in workflow client

    weblogic credentials are different.
    and using thode credentials I am able to login to weblogic server
    the users I am talking about is the process users defined in realm.
    in realm those users are defined as Default authenticator and OID authenticator.
    and I am trying to authenticate one of those users defined in realm using java api so that I an access a process defined In Oracle BPM 11g

  • Does resetting the system management controller on a MacBook delete any data, like files and pictures

    Does resetting the system management controller on a MacBook delete any data, like files and pictures

    No,.
    You can see the various steps to fix what ails your Mac here
    Step by Step to fix your Mac
    I've labeled which ones can certainly erase your data, they are at the bottom and adequatly warned.

  • I have installed the new OS and have lost a part of my personal data: music files and pictures. The new safari is horrible. Give me back the previous version!

    I have installed the new OS and have lost a part of my personal data: music files and pictures. The new safari is horrible. Give me back the previous version! Or fix the bugs!

    These are user-to-user forums, they are not monitored by Apple (there are too many forums/threads/messages for that to happen). If you want to leave feedback for Apple then you can do so here : http://www.apple.com/feedback/ipad.html
    What bugs ? Have you not got your music, files, photos on your computer so that you can sync them back to the iPad ?

  • Problem with Date of files and email

    Hi,
    I have a MacBook with MacOSx snow Leopard 10.6.3.
    I have a problem with the date showed for the files inside Finder and for my emails on Apple Mail. All files show a date with correct day and correct hour but with wrong month; all files have as month January. Except for files modified or email received in the last two days all the other files displayed by Finder (and also for email) have this wrong date. But when I want to attach a file to an email or insert a file (for example word) inside another file word the system displays correct date.
    Someone had the same problem?
    The version of Apple Email is 4.2 and the Finder is 10.6.4.

    You make no mention that you have checked your calendar settings.
    System Preferences>Time & Date>Date & Time
    Was this done?
    I am not at my SL MBP at the moment but, the above should be the same and/or similar as the Tiger OS.
    "MacOSx snow Leopard 10.6.3."
    Update to OS 10.6.4, repair permissions and restart your computer.
    !http://i50.tinypic.com/izvwo1.gif!

  • Best way to stream lots of data to file and post process it

    Hello,
    I am trying to do something that seems like it should be quite simple but am having some difficulty figuring out how to do it.  I am running a test that has over 100 channels of mixed sensor data.  The test will run for several days or longer at a time and I need to log/stream data at about 4Hz while the test is running.  The data I need to log is a mixture of different data types that include a time stamp, several integer values (both 32 and 64 bit), and a lot of floating point values.  I would like to write the data to file in a very compressed format because the test is scheduled to run for over a year (stopping every few days) and the data files can get quite large.  I currently have a solution that simply bundles all the date into a cluster then writes/streams the cluster to a binary file as the test runs.  This approach works fine but involves some post processing to convert the data into a format, typically a text file, that can be worked with in programs like Excel or DIAdem.   After the files are converted into a text file they are, no surprise, a lot larger than (about 3 times) the original binary file size.
    I am considering several options to improve my current process.  The first option is writing the data directly to a tdms file which would allow me to quicly import the data into DIAdem (or Excel with a plugin) for processing/visualization.   The challenge I am having (note, this is my first experience working with tdms files and I have a lot to learn) is that I can not find a simple way to write/stream all the different data types into one tdms file and keep each scan of data (containing different data types) tied to one time stamp.  Each time I write data to file, I would like the write to contain a time stamp in column 1, integer values in columns 2 through 5, and floating point values in the remaining columns (about 90 of them).  Yes, I know there are no columns in binary files but this is how I would like the data to appear when I import it into DIAdem or Excel.  
    The other option I am considering is just writing a custom data plugin for DIAdem that would allow me to import the binary files that I am currently creating directly into DIAdem.  If someone could provide me with some suggestions as to what option would be the best I would appreciate it.  Or, if there is a better option that I have not mentioned feel free to recommend it.  Thanks in advance for your help.

    Hello,
    Here is a simple example, of course here I only create one value per iteration in the while loop for simplicity. You can also set properties of the file which can be useful, and set up different channels.
    Beside, you can use multiple groups to have more flexibility in data storage. You can think of channels like columns, and groups as sheets in Excel, so you see this way your data when you import the tdms file into Excel.
    I hope it helps, of course there are much more advanced features with TDMS files, read the help docs!

  • Load data from file and send to background

    Hello, is it possible to load data from a file on the presentation server and then create a batch input to call a transaction with those values but on background NOT using data set?
    Thanks in advance.

    U can surely design the process to be executed in various ways..one of them is as below ::
    Upload ABAP.
    1. It reads the file from the presentation server and exports it into INDX database with a specific filename.
    2. Updates a ztable with user/upload date and time/filename/status=U.
    Batch ABAP.
    1. It reads the ztable for all the files with status=U.
    2. Using the filename IMPORTS the data from INDX database.
    3. Creates the batch input to call transaction.
    4. Sets the status as process along with process date and time.
    With the above you can have multiple uploading data and batch job picking up each file and doing the needful.
    Regards
    Anurag

  • Grab data from files and plot on same graph

    Hello
    I have written some code where I ask the user how many files he or she wants to open. These files contain data in 2D format and i want to output them on the same plot. I have tried bundling them into clusters and outputting them but it hasnt worked. Can someone look at the code and suggest some way around this. Thanks
    Attachments:
    analyzescreen.vi ‏108 KB

    I want the physical size of the array of file paths to change dynamically coz I do not know before hand how many plots I want to see.
    I see.
    Well, If you need to enter, say, 10 files in the path array, and only plot the first, say, 5 of them, then what you are doing is sensible.
    But be aware that if you wire the array directly through the FOR loop, it will execute one loop for each file, and you don't have to use an INDEX operation, or the property node, or ask the user how many files he just entered.
    I had done it like you had said
    The file you attached was identical to the first file - I nsee no evidence that you changed anything.
    Try my attached VI as a starting point.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks
    Attachments:
    AnalyzeScreen2.vi ‏34 KB

  • Data Load file and Rule file Creation

    Hi,
    I have used to create Rule file and Data file for loading data into Essbase 7.1.6 version.
    Past two years I didnt work in Essbase and forget the option, field properities, data load file creation.
    Could you please advice me or any demo for creating rule file as well data files?.

    Two things I could suggest.
    1. look at the Sample.basic application it has dimension and data load rules for all sorts of scenarios
    2. Come to my session at Kaleidoscope Rules files beginning to advanced where I go over some of the more interesting things with rules files

  • Cleaning up data base files and  old back-up files

    I installed LR version 1 and reimported all new photos. I noticed that for some reason I have several folders of backup and libraries in my lightroom file folder some nested within others. I would like to remove the old files and keep only the latest ones. I am not sure I know how to identify the latest files to keep or delete. I then would like to back up latest files in another location. Any help would be appreciated.
    Thanks
    Jim

    OS?
    <br />
    <br />Lots of ways using a combo of LR and OS. Select an image and have it reveal where it lives. Note the location.
    <br />
    <br />Make a change in a file, export the metadata, and if a folder you are looking at doesn't have any recent changes, it isn't the one in LR.
    <br />
    <br />Another safeguard is to zip the file, instead of trashing it. That way if you later find LR is counting those images as part of its db, you can restore.
    <br />
    <br />
    <span style="color: rgb(102, 0, 204);"></span>
    <font br="" /></font> color="#600000" size="2"&gt;~~ John McWilliams
    <br />
    <br />
    <br />
    <br />MacBookPro 2 Ghz Intel Core Duo, G-5 Dual 1.8; Canon DSLRs

  • How to Read specific data from file and do a calculation and display on the output

    FYI: Below is the function use for the writing:
    -OpenFile(use ASCII)
    -sprintf
    -WriteFile
    Example: Output from the doc file
    …EndTime: 09:34:48 program time: 0.567663 sec
    …EndTime: 09:36:48 program time: 0.666666 sec
    My objective is to read data 0.666666 (FYI: is last sentence of the file) to do some calculation. How can we read specific data(specific location) from file..
    Any advice or help?
    What is the function needed?

    I would consider counting line feeds and checking for end-of file to isolate the last line, which then can be read using fscanf...
    Have a look at getc...
    character = fgetc ( stream );
    if ( character == '\n' ) // new line
    if ( character == EOF ) // end-of-file

  • How to get data from file and save it in my DB

    Hi for all,
    my problem is :
    i have file in text format and this file have
    data .
    i want to insert this data into my database
    using forms .
    how i can do this .

    Hello,
    You can do this by :
    1. Command Host and u excecute SqlLoader
    Or
    2. Read the text file sequentially with text.io and insert data while not eof.
    Hope help u with this.
    null

  • Dates of files and mails

    last week i noticed that the mails in my inbox were dated as 2 months old (say, january 20 for that day, for example). then that disappeared all by itself.
    today i got the same problem with the dated of my pictures this time: the dates of the jpgs i transferred today were shown as january 31st in finder. i checked the exif data, and they were okay (as march 31st).
    could anybody share their experience/advice on this issue?
    any help much appreciated.

    Hi,
    You can try a package named: JTwain, which is available at http://asprise.com/product/jtwain.
    JTwain supports all kinds of digital cameras and scanners. You can use Java to access, contorl digital cameras and scanners, and of course, to acquire images with flexible settings.
    The developers' guide is available @ http://asprise.com/product/jtwain/devGuide.php
    In the simplest case, one line of Java code can solve your problem.
    Good luck!

  • How to export photos from iPhoto to external hard drive keeping Events structure (files and titles)

    Hello!
    I’ve been looking for a Automator application that does this for quite a while now.
    Basically I want to have an Automator application that saves a copy of my iPhoto pictures in a folder, inside Finder. Like a backup. Later on, I can save those “folders and files” on my external hard drive.
    What I want it to do is this:
    1) Export photos from a selected Album or Event on iPhoto. Using as title: “Event name” – “number” (I mean the number of the file: 1, 2, 3 …)
    2) Save them in a folder in Finder that I want.
    3) Organize the photos in different folders, the same way they are in iPhoto.
    The idea I had, was that it would do this automatically every time I launch iPhoto, as if it was synchronizing the photos into that folder.
    And then, every time I connect my hard drive, it copies these “real” folders into my hard drive.
    Is that possible? If yes, could you help me creating it, or tell me how I can do so myself, or where to download something like it?
    Thank you a lot! Kind regards,
    xanacarfran2008

    Is this waht you want to do?
    It's built into the File Export function of iPhoto 9 (11).  Select what every photos you want and use that option to put each photo in a folder with the Event title it came from as in this test of six randomly picked photos:
    OT

  • I was working on a tune all day, I quit Logic 9 then re opened it and the project file had reverted back to how it was 7 hours earlier when I had started. Can't find any evidence of the up-to-date project file and no Project File Backups folder

    I was saving the file all day at regular intervals,
    never happened to me before btu has now happened twice in the last week
    it's a real version off logic too, no crack

    Have you looked in Time Machine? Even if you're not connected, it still does little backups throughout the day.

Maybe you are looking for

  • How Can I Change One Page to Look Different From The Rest of My Pages?

    Hi, my website uses a CSS page with a dark background and white type. But I have one page I need to have a white background and light grey type on. I am not sure how to do this without it changing all of my site's look which I don't want to do. I onl

  • READ THIS If you're suffering freezing issues to your SL series ThinkPad

    I've owned a ThinkPad SL510 since 2009, been rather happy until I installed the Windows 7 Professional upgrade disc onto it. After using Word 2007 on it for a while, it hanged completely. BIOS and swapping the RAM around fixed it temporarily but it c

  • How I can fix exchange rate

    Hi all. I try to fix exchange rate in a post document ( With FB01 transaction ) filling the BKPF-KURSF field, and the system displays next message: Exchange rate of USD fixed for translation from EUR to  0,81853 The exchange rate 0,81853 is the last

  • VisualAdmin: No Changes possible

    Hello. I want to setup a XI system. ABAP instance alread installed, client copy finished (client 100), Java Add-In installed (used DDIC @clnt 100 as RFC user). Now i want to to execute the steps mentioned on page 16 ff. of Installation Guide XI SR1 (

  • Record selection in IT0000 (Actions) using LDB PNP

    Hi Guys, I am writing a report using LDB PNP, where I need to EXCLUDE the employees, if an action has been done on IT0000 for the reporting start date and end date. Can anybody share the logic to do this using HR Macros or FM? Thanks, mini