Need help to work with JNI in Eclipse

Hi Guys,
I am new to JNI. But I successfully tried few simple examples of JNI. It was easy/simple to create and run.
Now I am trying them on eclipse, but didn't get it run ( I am on ubuntu machine, and I already installed eclipse CDT plug-in). I read somewhere that makefile needs to be created for the project... but I am like a kid in JNI.
Can you please show me the steps how to configure JNI project in eclipse ?
Thanks

Start with this.
Cheers!

Similar Messages

  • Need help to start with some file and text manipulation

    Hello script mavens,
    I need help with starting a script that does the following:
    -within a base folder it takes an inventory (list?) of all the files (which happen to be image files).
    -creates a new folder inside the base folder and calls it imagesX where X increases by one every time the script is run
    -moves all the files into the images folder
    -within the base folder it creates a new text file and calls it imagesX.js
    -writes a "//-" into imagesX.js
    -then writes the list of filenames into the imagesX.js twice, separated by an empty line, and adds a semicolon to the end of each filename and saves imagesX.js
    -from a folder a level above the base folder it copies a file called index.html into the base folder and renames in indexX.html
    -in indexX.html it replaces a string "replaceThis" with "imagesX.js"
    The task is more complex but this would help me tremendously do the rest.
    If I am asking for too much on this forum please let me know

    This should get you started.
    The description of how you want to write the data isn't clear, but the rest should work (untested):
    property imageNum : 0 -- last used ImageNumber
    -- within a base folder it takes an inventory (list?) of all the files (which happen to be image files).
    -- get the folder:
    set baseFolder to (choose folder)
    -- now get the files within it:
    tell application "Finder"
    set fileList to every file of folder baseFolder as alias list
    end tell
    --creates a new folder inside the base folder and calls it imagesX where X increases by one every time the script is run
    tell application "Finder"
    set imageNum to imageNum + 1
    set newImageFolder to make new folder at baseFolder with properties {name:"images" & imageNum}
    -- moves all the files into the images folder
    move every file of folder baseFolder to newImageFolder
    --within the base folder it creates a new text file and calls it imagesX.js
    set textFile to (open for access file (baseFolder as text) & "images" & imageNum & ".js" with write permission)
    --writes a "//-" into imagesX.js
    write "//-" to textFile
    -- then writes the list of filenames into the imagesX.js twice, separated by an empty line, and adds a semicolon to the end of each filename and saves imagesX.js
    -- need more info here
    -- a blank line between each instance of the file name? or all file names, blank line, all file names again?
    -- an example, please
    close access textFile
    --from a folder a level above the base folder it copies a file called index.html into the base folder
    --and renames in indexX.html
    --in indexX.html it replaces a string "replaceThis" with "imagesX.js"
    -- the easiest way of doing this is to read the file and write a new copy with the changes - that's easier than changing it in situ:
    set indexHTML to (read file "index.html" of folder (container of baseFolder))
    set {oldTIDs, my text item delimiters} to {my text item delimiters, "replaceThis"}
    set indexHTML to text items of indexHTML
    set my text item delimiters to "imagesX.js"
    set indexHTML to indexHTML as text
    set my text item delimiters to oldTIDs
    set indexFile to (open for access file ("index" & imageNum & ".html") with write permission)
    write indexHTML to indexFile
    close access indexFile
    end tell

  • Help Required: Working with relational data

    Hi,
    I'm looking for some advice
    Scenario
    We have a customer who has an SE relational database with Apex for transaction processing. They require reporting functionality and are debating whether to buy BI SE One or BI EE; they will not buy the enteprise edition database though.
    Questions
    Here are my questions:
    1. In order to use answers and dashboards, does the relational data have to be in a dimensional format. Is this reccommended.
    2. We were debating on whether to create data marts for various business requirements. Is this standard procedure for relational data (Which is not too complex)
    3. If the data has to be in a dimensional format, is this best modelled using warehouse builder or the model layer of the repository using BI Administrator. (Baring in mind that the customer is an SME using a SE database)
    The main problem where having, been fairly new to warehouse building, is that we dont know what the best path is to take when working with relational data. Do we create dimensional models? What should we use? Is a relational structure suitable enough?
    Can anyone shed light on our problems
    Regards
    Kevin

    1. In order to use Answers and Dashboards you do not need to have a Data Warehouse. It can report out of both Transactional database as well as a data warehouse.
    2. It depends on what your business requirements are. BI EE/SE1 does not require you to have data marts. Data Marts would give performance gains, would help you in visualizing the transactional data from a business standpoint, is a big plus but not a mandate. If you want to go that route of creating Datamarts, you can easily do that using BI SE1 since that gives you warehouse builder which can be both used as a data modelling tool and a ETL tool.
    3. Warehouse Builder is a ETL tool. It helps in you visualizing/deploying data warehouses in databases. But BI EE Admin tool is more of a logical dimension modelling tool wherein the facts and dimensions do not exist physically but the tool uses them to do the querying/processing.
    Since you are just starting, what you can do is to use BI EE directly on top of the transactional system for the time being. But as a long term solution you can start working on your data marts and as soon as they are ready you can port the BI EE on top of them rather than the transactional system.
    Thanks,
    Venkat
    http://oraclebizint.wordpress.com

  • Need help integrating flash with asp

    i am creating a dynamic site that pulls all of its content
    from and access database. i would like to make the entire page in
    flash. i have never used flash to pull any content from a datbase
    before. does any one know how to do this ? or know of a good
    tutorial? i can only seem to find tutorials for flash 8 or flash 5,
    nothing for mx2004.
    it seems like every thing i try doesnt work and no one knows
    how to help me.
    feeling very discouraged,
    -furley

    Flash has nothing to do with getting data from an Access
    database.
    You need to focus on either ASP or ASP.Net, a scripting
    language for the
    server script either JScript or VBScript, middleware usually
    ADO or ADO.Net
    and finally SQL. All of these items go together in a server
    side script that
    could work with non-Flash or Flash client interfaces. You
    should find many
    tutorials on the internet with these items as it has been
    done for nearly a
    decade.
    You also can use ColdFusion.
    For Flash, you need to learn LoadVars Actionscript class if
    you plan to
    communicate data in the URL Variables format or XML
    Actionscript class if
    you want to use XML data format. It will not really matter to
    Flash what is
    on the server side as it will only be sending and receiving
    data in either
    of those two data formats (URL Variables or XML).
    If you want to look at some Using VBScript, ASP, ADO and an
    OLEDB Connection
    examples I use for seminars in Web database you can take a
    look here:
    http://www.hosfordusa.com/ClickSystems/courses/webdb/.
    However they lack
    Flash example but would work "as is" with a Flash example.
    Once you look at some of those options, you can then form
    more specific
    questions for this forum and especially with using the
    LoadVars and XML
    Actionscript classes or the XML connector Flash component.
    Lon Hosford
    www.lonhosford.com
    Flash, Actionscript and Flash Media Server examples:
    http://flashexamples.hosfordusa.com
    May many happy bits flow your way!
    "professorfurley" <[email protected]> wrote
    in message
    news:[email protected]...
    i am creating a dynamic site that pulls all of its content
    from and access
    database. i would like to make the entire page in flash. i
    have never used
    flash to pull any content from a datbase before. does any one
    know how to do
    this ? or know of a good tutorial? i can only seem to find
    tutorials for
    flash
    8 or flash 5, nothing for mx2004.
    it seems like every thing i try doesnt work and no one knows
    how to help
    me.
    feeling very discouraged,
    -furley

  • NEED HELP IN MATRIX WITH GROUP REPORT

    Dear All,
    I need small help in MATRIX WITH GROUP REPORT In Report Builder Test Report
    In my report, having periods as rows and location as columns as shown below,
    1) LOC-A
    JAN-10 FEB-10
    ITEM-GROUP -1 1 2
    ITEM-GROUP-2 3 4
    ITEM-GROUP 3 5 6
    2) LOC- B
    MAR-10 APR-10
    ITEM-GROUP -1 7 8
    ITEM-GROUP-2 9 10
    ITEM-GROUP-3 11 12
    But comming to my requirement, the periods should be in fix in matrix as shown below
    1) JAN-10 FEB-10 MAR-10 APR-10
    LOC-A
    ITEM-GROUP -1 1 2
    ITEM-GROUP-2 3 4
    ITEM-GROUP 3 5 6
    LOC- B
    ITEM-GROUP -1 0 0 7 8
    ITEM-GROUP-2 0 0 9 10
    ITEM-GROUP-3 0 0 11 12
    I am unable to get this kind of output format
    Please kindly waiting for reply from our team....
    Regards
    krishna.P

    For the periods, create a seperate dummy query and then use it as column group in the multi query matrix.

  • Need help  Pagination Suppourt with DataGrid

    Hi ,
    When i do a search Operation , the data from Database is huge and i think if i display all of them at a Time it will be a performance and response Time issue .
    So the question i am asking is that , can any body please give me a basic idea as how to implement Pagination with DataGrid Results ??
    Need help with Datgrid and Pagination suppourt .
    Thnaks in advnace .

    Hi Kiran,
    Try referring to the below link...
    http://www.flexicious.com/
    Thanks,
    Bhasker Chari.S

  • Need router that works with G4 tower and macbook pro G5

    Hi, all,
    I work with a group of people and we share our computers when we work on a project. We use my G4 Quicksilver, currently hooked up to a D-Link router DI-524, rev. C. One of our group's laptop died and got a MacBook Pro with Leopard and installed Adobe CS3 (we are using CS2). Problem is the MAcBook Pro keeps losing it's connection, damaging files in Adobe. The router is not listed as compatible with the MacBook pro (same model, rev A is however) so I guess that is part of our problem. I am confused by the variety of products and want to make sure the local network we use functions better. I almost went for the Apple Extreme until I read about possibly needing an enabler. By the way, I am also having trouble with printer sharing, don't know if it is router related as I can most of the time get on line on the Pro and share files - its just that it cuts out unpredictably and causes trauma in the work flow. Since the G4 is the home base, I am posting here. Thanks

    It sounds like you have at least two problems: reliable wifi connection and version control. The second one I can just say that when I was an engineer we had a separate software application that allowed collaborative work to be done on a project. It is quite complicated, but only one file could be opened and saved so that a person could do their thing on the file and then save it back to document central. The software would keep track of everything and make sure things were saved properly, etc. If disaster struck, you could still revert to the last version and not have to start over.
    The unreliable connection is a fairly common problem. My wife's MacBook Pro is at the other end of the house. The path loss between her machine and the router is significant. Because the Pro has a built in antenna, it's not the best in the world for reception or transmission. I ended up putting a USB WIFI stick on her Mac. I also put it on the end of a USB cable so that I could hoist and move the stick around to get best performance. I'm not aware of any compatibility issues between Macs and routers, but my router is a plain Jane DLink 514 and my iMac, G4, PowerBook Pro, and my Windoz machine running Ubuntu on it are all happy. BTW, I also had to put a USB WiFi stick on the Windoz machine and with the constant internet updates I need for Ubuntu, the connection only occasionally is messed up.

  • I need ActiveX to work with Firefox8.0 for my downloads,HOW?

    Since my update to version8.0,I cannot download the some software.The exe.exe. operation for installation of my selected software des not work.The safe downloads from softronic and cnet won't run.And certain news sites can not be read.Can you suggest any fix for this?Please help if you can.Thank You for yur attention.

    ActiveX doesn't work with Firefox. <br />
    [https://support.mozilla.com/en-US/kb/ActiveX]

  • I am new to Mac.  I am thinking of getting a MacBook Air.  My most pressing need is to work with photography programs so screen size, resolution, software capability are important to me.   Is a 15 inch screen coming out this spring?

    I am new to Mac.  I am considering getting and airbook.  My most pressing need is to use for photography, so software program capability, display, resolution, are all important. Is an Airbook the best choice and is there a 15 inch screen coming out in the spring as I had heard rumor of?

    You might enjoy this review, which specifically compares it to the MacBook Pro:
    http://www.macstories.net/reviews/13-inch-macbook-air-review/
    Since you will be working with photography, performance and display resolution will be equally important.
    As for future models, no one knows. We find out the moment they become available for purchase, and not one moment before. That is also the same moment speculation on the next model begins. In any event we can't engage in that here; it's contrary to the terms of use.

  • Need guidance for working with the available example labview VI

    Hello,
    I'm working with the pulse signals and the pulse signals will be effected by the motion artifacts.There is similar thread available on labview here  Adaptive filtering to cancel out noise from an pulse signal  for removing the motion artifacts from pulse signals.so,I am planning to use the vi posted in the thread as LMS block by block(example) with sampling rate of 100Hz and number of samples needed=100 using DAQPad-6015/6016.
    But I am confused with the channels of DAQ as the author(who bulit this vi) says the channel0 for signal and channel1 for reference signal as shown  in the attached image.
    1)If channel1(aio) of DAQ is feeded with the analog input of pulse signals then what is the input needed/feeded to the channle1 of DAQ.
    2)Can I directly use the vi by changing the sampling rate of 100hz and number of samples=100 or anything else is needed for this requirement.
    Can someone explain me the required input to the channels and settings with the DAQ. thanks.
    Attachments:
    LMS_example.JPG ‏127 KB

    Hello,
    can someone explain how the DAQ channels settings are to be done.
    thanks.

  • Replaced hard drive in compaq presario cq62, need help recovering it with out disks

    Recently replaced the hard drive in my notebook due to failure of original.  Need help recovering it without disks

    If you are wanting to install the original copy of Windows it came with, you will need a set of recovery disks.
    Otherwise, you can purchase a copy of Windows to install and download the appropriate drivers from http://goo.gl/hOm3. Just make sure the copy of Windows that is installed is at least the same family of Windows to ensure that drivers are available.
    What is the exact model of the notebook and product number?
    NOTE: Do not provide the serial number.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Need help on work flow

    hi all,
    This is first time i am implementing workflow, i need help.
    can u give me procedure how i can proceed for my requirements 
    <b>i have to develop the workflow for material creation with particular view for specified users (basic data1 and 2 for MM consultant, MRP1,2,3,4 for FI consultant)</b>
    on net i am getting workflow material theory
    anu body can send me examples (which has some screen shots) on workflow so that i can implement easily
    [email protected]

    Hi,
    Please follow the links,
    http://help.sap.com/saphelp_nw04s/helpdata/en/04/926f8546f311d189470000e829fbbd/content.htm
    http://help.sap.com/saphelp_46c/helpdata/en/c5/e4a930453d11d189430000e829fbbd/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a1/172437130e0d09e10000009b38f839/frameset.htm
    A good tutorial
    http://www.thespot4sap.com/articles/Invoice_Verification_Automation_Using_SAP_Workflow.asp
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    http://www.sap-img.com/workflow/sap-workflow.htm
    /people/alan.rickayzen/blog
    /people/jocelyn.dart/blog/2006/06/19/why-use-abap-oo-with-workflow
    a good book
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Check the following PDF
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    Please reward for the same.

  • Need help from somebody with the "MSI KT6 Delta-FIS2R" motherboard

    Hi everybody!
    I really need some help from somebody with the MSI KT6 Delta-FIS2R motherboard (the one with onboard LAN, Audio, RAID, S-ATA and IEEE1394 firewire). You see. I've got this board myself but it's been destroyd. Some values for the onboard devices in my board has been overwritten so that windows no longer recognizes the onboard LAN and Audio controller anymore. I really need some help from somebody with this board.
    I need to see what the values for the onboard devices should be. I hope someone can help me by sending me a repport from the Everest home edition: http://www.lavalys.com/products/overview.php?pid=1&lang=en
    If anyone could do me this favour, I would be VERRY thankfull

    Quote from: HYSTERIAH on 12-November-05, 06:24:20
    I really need some help from somebody with the MSI KT6 Delta-FIS2R motherboard
    HYSTERIAH,
    With 76 Replies and 277 Views on your original thread, it looks to me like people have been trying to help you.
    So there is no confusion, I am locking this thread so all your help and advice you receive will be in the same place, so people do not need to jump between threads to keep track of what has already been suggested for this mobo of yours.
    Richard

  • Need help for working in forms

    Hi i am using oracle 10g and forms 6i.
    I written one query in toad it is working fine but when i put in forms-6i it's giving error. i understood that it's not taking inline views.
    Here i am going to put the query can any body please help to work in forms also.
    SELECT PART_NO,DESCRIPTION,DEFECT_QTY,DESTRUCTION_QTY,DEFECT_QTY-DESTRUCTION_QTY PENDING
                   FROM (SELECT ESD.PART_NO,EPM.PRT_DESCRIPTION DESCRIPTION,SUM(DEFECT_QTY) DEFECT_QTY,
                   NVL(SUM((SELECT SUM(DECODE(TRAN_TYPE,'E',QTY))
                   FROM EIIS_DEFECTTRANTB
                   WHERE REJ_NO=ESD.DRS_NO AND PART_NO = ESD.PART_NO)),0) DESTRUCTION_QTY
                   FROM EIIS_SUPDEFECT_HDR ESH,
                   EIIS_SUPDEFECT_DTL ESD,
         EPPS_PARTTB     EPM
                   WHERE ESH.DRS_NO = ESD.DRS_NO
                   AND     ESD.PART_NO = EPM.PRT_PARTNO          
                   AND     ESH.REJ_TYPE ='M'
                   AND     ESH.STATUS = 2
                   GROUP BY ESD.PART_NO,EPM.PRT_DESCRIPTION)
         WHERE DEFECT_QTY-DESTRUCTION_QTY>0
    Thanks in advance...
    Regards
    indra

    If it's working in toad it will definitely work in forms also,make sure that bind variables you are keeping should be in the data block..Try to print a message after your query so that you will know whether control is going to your query or not.
    Declare
    v_test         VARCHAR2(100);
    Begin
    SELECT PART_NO,DESCRIPTION,DEFECT_QTY,DESTRUCTION_QTY,DEFECT_QTY-DESTRUCTION_QTY PENDING
    INTO
    FROM (SELECT ESD.PART_NO,EPM.PRT_DESCRIPTION DESCRIPTION,SUM(DEFECT_QTY) DEFECT_QTY,
    NVL(SUM((SELECT SUM(DECODE(TRAN_TYPE,'E',QTY))
    FROM EIIS_DEFECTTRANTB
    WHERE REJ_NO=ESD.DRS_NO AND PART_NO = ESD.PART_NO)),0) DESTRUCTION_QTY
    FROM EIIS_SUPDEFECT_HDR ESH,
    EIIS_SUPDEFECT_DTL ESD,
    EPPS_PARTTB EPM
    WHERE ESH.DRS_NO = ESD.DRS_NO
    AND ESD.PART_NO = EPM.PRT_PARTNO
    AND ESH.REJ_TYPE ='M'
    AND ESH.STATUS = 2
    GROUP BY ESD.PART_NO,EPM.PRT_DESCRIPTION)
    WHERE DEFECT_QTY-DESTRUCTION_QTY>0
    message('Query is'  || v_test);
    END;Edited by: sandy on Feb 7, 2012 11:15 AM
    Edited by: sandy on Feb 7, 2012 11:16 AM

  • What do i need to start work with Beehive?

    What utilities should i use to work with Beehive? As i see it is impossible to manage team work in beehive only via web-interface, as it was possible in OCS - am i right?
    The web-interface is rather poor, what is its purpose?
    Should i use a lot of different clients to work in Beehive on team project:
    administrative task in beectl utility, and the work in Internet Explorer + SmartFTP + Mozilla Sunbird + Mozilla Thunderbird + Pidgin?
    Or for work with all beehive options i must nesessarily use Microsoft Outlook?
    Thank you.

    Hello
    web interfaces are due to future releases, in the near future for some functionalities, farther for some others. Beehive releases are supposed to occur quite often, you should expect more soon.
    For now, if you wanna start and evaluate the platform, you can use MSOutlook indeed, of a bunch of free clients (Mozilla, ...). But beehive is much more powerful than what you get through those interfaces.

Maybe you are looking for

  • Iphoto has lost connection with its folder

    Hello, One day I turned on my mac, opened iPhoto and found it empty. I've read various threads and know not to be alarmed as I can see the folder of my pics is still there. I am however having trouble re-connecting iPhoto to this folder. In the past

  • DNG raw plug in 8.2 cannot open raw files from canon camera S120

    After downloading DNG raw plug in 8.2 for CS5 for the new Canon S120 camera, the raw file still cannot be open Can someone help

  • Using global variable in package

    Hi. I have created a function (Retrieve_SerialNo) which returns a variable, which I use throughout my package. I would like to assign this variable as a global variable to be used by all functions and procedures in the package. Can someone help me in

  • FTP Access over .bat file

    Hi, I am trying to access to a ftp server using a Batch file i wrote. The Batch file works, if i start it manually. However, if i call it using the System exec.vi  (giving it to the command line input, as working directory the directory where the bat

  • "Font Capture: Adobe Premiere Elements.exe - Bad Image" error message

    I purchased Premiere Elements 11 last year and it has been working fine.  But just put in a new HDD into my laptop and now I can't open Premiere.  I uninstalled / reinstalled the program a couple times today with no improvement.  The problem is alway