ResourceBundle is driving me mad. Please help

Is simple: i have a folder in the project root named config and in that folder i have a file server_en.properties.
In a java class i do this:
public class MySqlConnection{
private static ResourceBundle server = null;
public MySqlConnection(){
Locale local = new Locale("en");
server = ResourceBundle.getBundle("config.server",local);
I get this exception: Exception in thread "main" java.util.MissingResourceException: Can't find bundle for base name .config.server, locale en
I also "played" with tha class path:
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
     <classpathentry path="config" kind="lib"/>
     <classpathentry path="src" output="build" kind="src"/>
     <classpathentry sourcepath="JRE_SRC" path="JRE_LIB" kind="var"/>
     <classpathentry path="libs/JDatePicker.jar" kind="lib"/>
     <classpathentry path="libs/mysql-connector-java-5.0.7-bin.jar" kind="lib"/>
     <classpathentry path="libs/struts.jar" kind="lib"/>
     <classpathentry path="bin" kind="output"/>
</classpath>
Please help.

Is simple: i have a folder in the project root named config and in that folder i have a file server_en.properties.
In a java class i do this:
public class MySqlConnection{
private static ResourceBundle server = null;
public MySqlConnection(){
Locale local = new Locale("en");
server = ResourceBundle.getBundle("config.server",local);
I get this exception: Exception in thread "main" java.util.MissingResourceException: Can't find bundle for base name config.server, locale en
This is my problem

Similar Messages

  • UNKNOWN SYMBOL DRIVING ME MAD, PLEASE HELP!!!

    I have a symbol that has come up on my screen. It's a white box with a black dot inside and a red dot like the 'notification star' on it. It's in the same area as where you get your bbm, facebook, email, etc. notifications. I've tried going through all my apps and nothing is helping. It's driving me mad. PLEASE PLEASE HELP!

    Hi DivaAoife,
    Sounds like an update notification for BlackBerry App World. Do you have an email regarding an update? If not, you may be able to see the update notification in My World within App World.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Airport Express (AX) not found after restart....driving me mad, please help...!

    Hello,
    I tried to search for this issue but never found the solution. In the meantime, it drives me mad......so please do respond if you know the answer.
    Here is the problem. I have a WDS setup for our home, time capsule as base and several airport extremes (AX) for the wifi net through the house. In addition there is one AX for iTunes and I have one setup for the printer. Untill last week everything worked just fine. However, after installing a new printer, the printer AX blinked amber. I performed a reset and went through the setup, my AirPort Utility found it right away. I followed the steps for setting it up to join my current wireless network (usb printer). However, after the message: "The settings for this AirPort Express have been successfully updated. You can close this window or wait for this AirPort Express to restart" , the AX restarted, I finally got a message telling me there was an error joining my network. So I closed the ultility, resetted the AX and went through the process again. Unfortunately, the same result. Tried to connect the old printer, same result. Tried another AX, same result. Tried connecting it with a LAN cable, same result. It all goes fine untill right after the restart phase. NExt the AX is not recognized.
    As nothing has been changed in the meantime, I have no clue at all what might be the problem. Anyone ????
    Looking forward to the answer, untill now, I have not been able to find a solution.
    Kind regards,
    Mark

    Mark,
    I am having the same problem.  I found this website, not sure if you have already given this a try.
    http://adamantventures.com/blog/airport-express-setup-troubleshooting/

  • Html:link not working in struts project driving me mad, please help...

    Afternoon all,
    Can anyone help me with an issue I'm having with my first struts project, I'm learning as I go.
    Anyway, I'm trying to create a bog standard hypertext link which passes a value back to a specified struts action. The flow of the application
    is as follows:
    1) search.jsp
    User enters a name and postcode to search on, then click submit
    2) searchAction
    Struts action 'search' is called and does the search in a back-end db.
    Each result found from search is created as a javabean (named resultsBean), and added to a list object. The list object is set as a request
    attribute named 'SearchResults'.
    The action is then forwarded on to another jsp page named results.jsp
    3) results.jsp
    The results.jsp page retrieves the list object from the 'SearchResults' attribute and loops through each entry
    in the list and converts each entry to the 'resultsBean' javabean object.
    Each resultsBean object has a getVirtualID method which stores a string value. This value is retrieved and a hypertext link is created which
    passes this value on to another struts action named 'select'.
    When this link is clicked on, the select struts action is called and the value passed as a parameter is retrieved.
    This is the part I can't get to work, I can't get the link to render properly. When I click the link the select action retrieves
    & lt;%= resultsBean.getVirtualID() & gt; as the value of the parameter 'vid' instead of the value stored in the getVirtualID method of the resultsBean.
    Listed below is the code from my results.jsp page. If anyone can help me get this to work I would be very grateful.
    Thanks in advance,
    Alex
    results.jsp code
    <%
       List searchResults = (List)portletRequest.getPortletSession().getAttribute("SearchResults");
    %>
    <div id="table_layout" style="width: 713px; margin: 0px 0px 0px 3px;">
      <div id="row">
        <div id="column"><img src='<%= response.encodeURL("/images/results.gif") %>' alt="" width="223" height="159" border="0" /></div>
         <div id="column" style="width: 30px;"></div>
         <div id="column">
          <div id="table_layout" style="width: 460px;">
            <div id="row" style="width: 430px; border-bottom: 1px solid #4e137d;">
              <div id="column" style="width: 155px;">Name</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" style="width: 130px;">Address</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" align="right" style="width: 120px;">References</div>
            </div>
    <% if (searchResults.size() > 0) {
           Iterator it = searchResults.subList(0, searchResults.size()).iterator();
           ResultsBean resultsBean = new ResultsBean();
           while (it.hasNext()) {
                resultsBean = (ResultsBean)it.next(); %>
            <div id="row" style="padding: 5px 0px 10px 0px;">
              <div id="column" style="width: 155px;"><html:link styleClass="results"  page="/select.do?vid='<%= resultsBean.getVirtualId() %>'" title="<%= resultsBean.getFullName() %>"><%= resultsBean.getFullName() %></html:link></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" style="width: 130px;"><%= resultsBean.getFullAddress() %></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" align="right" style="width: 120px;"><%= resultsBean.getReferenceIcons(portletResponse) %></div>
              <div id="column" style="width: 13px;"></div>
              <div id="column" style="width: 22px;"><input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;"></div>
            </div>
    <%     }
       } %>
           </div>
         </div>
      </div>
    </div>
    <br />
    <br />
    <html:link forward="/searchpage">Return to search page</html:link>

    If you have part of an attribute dynamic, you need to make the entire attribute an expression.
    ie instead of
    page="/select.do?vid='<%= resultsBean.getVirtualId() %>'"
    it has to be
    page="<%= "/select.do?vid=" + resultsBean.getVirtualID() %>"
    However for my approach, I would aim for zero scriptlets, and use the struts tags even more. For instance instead of an iterator, use the struts logic:iterate tag (or the JSTL c:forEach>
    Also instead of div tags, I would use html table tags - <table> <tr><td> etc etc. Thats what its for right?
    Here is at least some of it rewritten with struts tags.
    I left out the div tags so I could focus on the "important" stuff.
    <logic:iterate id="resultsBean" name="SearchResults">
      <html:link styleClass="results"  page="/select.do" paramId="vid" paramName = "resultsBean" paramProperty="virtualId">
        <bean:write name="resultsBean" property="fullName"/>
      </html:link>
      <bean:write name="resultsBean" property="fullAddress"/>
    <%= resultsBean.getReferenceIcons(portletResponse) %>
    <input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;">
    </logic:iterate>I'm not entirely certain what you are doing with that checkbox at the end. They all have the same name, but no value. You couldn't identify at the server end which one was clicked.
    Hope this helps some,
    evnafets

  • I tunes problem driving me mad - please help

    Hi, I've just got a new laptop and have installed i-tunes on it. I have copied all my music to the hard drive from my previous computer and i-tunes has has automatically placed all of the music in the i-tunes library. The problem is that for some reason the library is showing 3 copies of each song even though there is only one of each on the hard drive. i have tried removing i-tunes and reinstalling but it is still happening. i have looked through the i-tunes settings but can't work out why it is happening. i dont want to have to go through the library deleting songs as it would take forever...
    Has anyone else had this problem? any help would be greatly appreciated
    Thanks

    sometimes different songs are placed under one name and also it looks through multiple directories.try to single the folder out for music and then it might work
    hope i helped.

  • FCP plays DVCPro HD - QuickTime does not - Driving me mad – please help-.

    Hello
    This is a follow on from a previous post. Trying to get DVCPro HD QuickTime file to playback on a MAC Mini. The file opens but the image is white and I occasionally get a dialog box informing me that a QuickTime component is missing.
    I have installed Final Cut Pro on to this MAC
    I have downloaded and installed the DVCPROHD components software from apple.
    From FCP I can do a custom export (File Export QuickTime Conversion) for DVCPro HD but the same option isn’t available if I try and do a custom export from QuickTime.
    I have done the same install on a G5 and all is well. Is it the Intel – Mac Mini that is causing the problem? Both MACs have 10.4.8 installed so I don’t think it’s a system thing.
    ?????..any advise is greatly appreciated.
    Sincerely
    D

    you answered yourself, give you the green star,
    http://forums.creativecow.net/cgi-bin/newreadpost.cgi?forumid=8&postid=914678&pview=t#head

  • Display of eBay Sales Manager Sold Page to wide for screen. Scrolling is driving me mad. Help please for Newbie to Mac!

    I have a new Mac Book Pro 13” & an iPad for my Amazon and eBay business. I have been a PC user.  The problem relates to both.
    On my eBay Manager Sold page, the display of the page is wider than my screen. I use Safari and all other webpages are fine apart from this and a couple of other eBay Sales Manager pages.  I have tried using the eBay default column widths for the Sold display page & also setting the widths of the Sold columns to my own preferences.  However, on each page refresh the display page width reverts meaning I am having to scroll left and right to see full details of each sale.
    Help would be much appreciated as it is driving me mad.  I have tried all the usual things - page display, clearing cookies, restarting computer but nothing helps. 

    Hey mylittlefleur,
    Sounds like the eBay Manager Sold page expects a very wide window.
    Does the content get too small if you zoom out the window?
    Zoom in on webpages - Safari Help
    Make the webpage content larger: Choose View > Zoom In, press Command (⌘)–Plus Sign (+), or pinch open on your trackpad. To make only text larger, choose View > Zoom Text Only before you zoom in.
    Set a minimum font size for webpages: Choose Safari > Preferences, click Advanced, then select “Never use font sizes smaller than.” Click the pop-up menu and choose the minimum font size you want.
    Expand to full-screen view: Click the green full-screen button in the top-left corner of the browser window, or press Control-Command (⌘)-F. To return to standard view, move the pointer to the top-left corner of the screen, then click the green full-screen button again, or press Control-Command (⌘)-F.
    Of course you can zoom out to see more.
    Nubz

  • Oracle 10g Rel2(10.2.0.3) on Vista ultimate driving me crazy, Please HELP

    Hello Folks and Expert,
    I am Certified Ora DBA and am stuck, thats a shame
    I am going to install and Test Oracle 10g on Vista as my future client will use Just Vista and no othr OS, so there is no OTHER OS options,
    I ready all the documentaiotn and release notes and also read that Oracle 10g(10.2.0.3) is certified on Vita Ultimate.
    I downloaded the DB which is frm the below link:
    Oracle Database 10g Release 2 (10.2.0.3/10.2.0.4) for Microsoft Windows Vista and Windows 2008
    *** It installs but it justdoesn't work properly, PLEASE HEEEEEEELP I am running out of time.
    steps I have done:
    1. Installed loppback and tested and it works when I ping, both ping computer and ping computer.domain with no error.
    - whic means under windows>system32>driver> etc>host I added the 10.10.10.10 and cmputer name.
    2. Under MMC I added cmputer local policy for local computer
    3. Also Under "Local security setting" under "Local Policies" Under "User right Assignment" Under "Log on as a Batch job" I added the User name which was created when weload the Vista for the first time which is the Computer Admin, ALSO REALOADED THE COMPUTER WITH TH FACTORY SETTING AND AFTER THE FIST BOOT, UNLOCKED THE "ADMINISTRATOR" USER OF THE OS AND TESTED WITH THE ADMIN USER AS WELL WHICH WAS ADDED TO THIS lOG ON AS A BATCH JOB.
    4. Restarted the Computer on all the step that I had to
    5. Downloaded the DB and installed the DB, it installled without any Error
    ******************My Questions are as belooooowww ******************
    When Oracle installd he prduct, usually under the
    Start menu> All programs we should have 4 folders (Application Development, Configuration and Migration, Integrated management tools, Oralce installlation products) and DATABASE CONTROL - ORCL
    a - when installation finishesh it JSUT DOESN't CREATE ------> DATABASE CONTROL - ORCL Whyyyyy ? (It is driving me crazy, I have another xp machine and it has also I had EVEN Vista Home premium and I was able to install on it before to test)
    b - I can loging to the database after i type the adress I remembered manually in the browser, it logs in without any errror, but
    When I want to shutdown the database It passes the host crendential once and I wait and it does nothing and a little windown pops up and says
    *"Enterprise manager stopped working"*
    C - To test and stop Listener also it just doesn't stop it and doest the samething,
    I just wannna CRYYY, it is getting me Crazy,
    PLEASE HELP ME with all THREE QUESTONS A,B,C PLEASE HELLLLLLPPPPP
    Rgrds,

    Hello Folks and Expert,
    I am Certified Ora DBA and am stuck, thats a shame
    I am going to install and Test Oracle 10g on Vista as my future client will use Just Vista and no othr OS, so there is no OTHER OS options,
    I ready all the documentaiotn and release notes and also read that Oracle 10g(10.2.0.3) is certified on Vita Ultimate.
    I downloaded the DB which is frm the below link:
    Oracle Database 10g Release 2 (10.2.0.3/10.2.0.4) for Microsoft Windows Vista and Windows 2008
    *** It installs but it justdoesn't work properly, PLEASE HEEEEEEELP I am running out of time.
    steps I have done:
    1. Installed loppback and tested and it works when I ping, both ping computer and ping computer.domain with no error.
    - whic means under windows>system32>driver> etc>host I added the 10.10.10.10 and cmputer name.
    2. Under MMC I added cmputer local policy for local computer
    3. Also Under "Local security setting" under "Local Policies" Under "User right Assignment" Under "Log on as a Batch job" I added the User name which was created when weload the Vista for the first time which is the Computer Admin, ALSO REALOADED THE COMPUTER WITH TH FACTORY SETTING AND AFTER THE FIST BOOT, UNLOCKED THE "ADMINISTRATOR" USER OF THE OS AND TESTED WITH THE ADMIN USER AS WELL WHICH WAS ADDED TO THIS lOG ON AS A BATCH JOB.
    4. Restarted the Computer on all the step that I had to
    5. Downloaded the DB and installed the DB, it installled without any Error
    ******************My Questions are as belooooowww ******************
    When Oracle installd he prduct, usually under the
    Start menu> All programs we should have 4 folders (Application Development, Configuration and Migration, Integrated management tools, Oralce installlation products) and DATABASE CONTROL - ORCL
    a - when installation finishesh it JSUT DOESN't CREATE ------> DATABASE CONTROL - ORCL Whyyyyy ? (It is driving me crazy, I have another xp machine and it has also I had EVEN Vista Home premium and I was able to install on it before to test)
    b - I can loging to the database after i type the adress I remembered manually in the browser, it logs in without any errror, but
    When I want to shutdown the database It passes the host crendential once and I wait and it does nothing and a little windown pops up and says
    *"Enterprise manager stopped working"*
    C - To test and stop Listener also it just doesn't stop it and doest the samething,
    I just wannna CRYYY, it is getting me Crazy,
    PLEASE HELP ME with all THREE QUESTONS A,B,C PLEASE HELLLLLLPPPPP
    Rgrds,

  • E: drive full and trying to back up! driving me craaaazy please help

    hey! my laptop is like 5 days old! i put all my old photos and music from itunes onto disks from my old laptop and put them onto this one. everything was fine until sunday! the laptop started a back up! i got a messege saying that the disk E: drive was full and to delete files ect... or i could change the settings! i tryed to change the back up to do this onto disk. but iv been told there should be a place to do this on the laptop and the the wall partions may not be set rite. i also keep getting a warning that my E: drive is full and to make space! i have phoned hp support and they say talk to the place i got the laptop from and so i did they said i could sent it back but that means removing everything! i have googled and seen loads of people with this prob so is there a way to fix this? someone please help its drivng me crazy! i have a hp pavilion g6 series. thaaaaaaaanks x

    You need to re-run the backup program to unselect the E drive.
    As a sidebar, it is actually unwise to backup to the same physical hard drive. You need to realize that you have a single hard drive , that is partitioned in hard disc C,D,E.  If that physical hard drive were to crash, cease to function. burn-out, etc, you lose all of it. It is not separate drives.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • Can't open .pkg files. Going mad, please help!

    I'm trying to open an edirol driver with a .pkg file type but the icon just expands and then nothing happens. Same thing happpens with other .pkg files. I've opened with Installer, tried creating a new admin user, copied to desktop but to no avail. Is there anything else I can try short of Archive & Install? Bit scared of trying that. Please help.
    Thanks.

    Prince of Wales:
    I just downloaded the file in Firefox. In the download window I clicked Open and the file was expanded on my desktop. I located the folder and double clicked. I then double-clicked on the .pkg and it opened the installer and was ready to run the script to see if the software could be installed on my computer.
    I suggest that you try downloading the file again and see if a new download makes a difference. Incidentally, not that it should make a difference, what browser are you using? Have you had difficulty expanding and installing any other downloads.
    Good luck.
    cornelius
    Message was edited by: cornelius

  • Windows 7 application error 1000 - driving me insane please help

    I keep getting the message - windows explorer stopped working when i tried to upload photos, look at them on computer etc
    I tried many offered solutions and this is what i found:
    System
    Provider
    [ Name]
    Application Error
    EventID
    1000
    [ Qualifiers]
    0
    Level
    2
    Task
    100
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2014-05-28T20:41:48.000000000Z
    EventRecordID
    30226
    Channel
    Application
    Computer
    Mia-PC
    Security
    EventData
    explorer.exe
    6.1.7601.17567
    4d672ee4
    ntdll.dll
    6.1.7601.18247
    521eaf24
    c0000005
    00000000000317a7
    18f4
    01cf7ab4b783d6b3
    C:\Windows\explorer.exe
    C:\Windows\SYSTEM32\ntdll.dll
    7cc28f3a-e6a8-11e3-8a86-14dae9e553d7
    I have been trying to fix this for over a week, please help before i sling this computer out of the window
    Mandy

    Hi, I would try to use the calendar to fallback on a system restore's point if you can, something hooked's up on your explorer.exe. Could be a malware too, depend what you do on your Windows 7.
    Regards, Philippe
    Don't forget to mark as answer or vote as helpful to help identify good information. ( linkedin endorsement never hurt too :o) )
    Answer an interesting question ? Create a
    wiki article about it!

  • Order of tunes in library when importing is driving me nuts please help me!

    Can somebody PLEASE help me....when I import albums into the library/ playlists it stores all the first tracks, then all the 2nd tracks, then all the 3rd tracks, and so on....like 1 1 1 1 2 2 2 2 3 3 3 3 and so on, down the list, and plays them in that order too. Extemeley annoying...can anyone help me rectify this problem?

    click on the column header that you want to sort by (artist/album/track#/song title etc)

  • SQL driving me mental, please help

    I have the following tables in my database.
    customerinfo
    lineitem
    orderhistory
    productinfo
    I just recently changed my database to provide for normalisation but it screwed with my sql statement.
    I used to be able to type:
    ResultSet res = stmt.executeQuery("SELECT * FROM orderhistory WHERE CustomerDescription ='"+CID+"' ORDER BY OrderID");
    This would return a:
    ProductDescription
    Quantity
    Cost
    and Total Cost.
    These were originally all in a single table but now ProductDescription is in productinfo, Cost is in productinfo, Quantity is in Lineitem, and TotalCost is in orderhistory.
    Can anyone figure out the statement i must use to get the correct result set???? Please, I have tried everything and have hit a brick wall everytime.

    Sorry to bother you again but this is driving me insane and I really need to get this sorted. Here is the problem.
    I have three table in my database as follows:
    LineItem Table consists of 3 fields:
    LineItemId, OrderID and Quantity.
    OrderHistory table has 3 fields:
    OrderID, CustomerID and Total
    ProductInfo table has 4 fields:
    ProductID, ProductDescription, Cost & ProductLocation.
    OrderID is the primary key:
    What I want to do is extract the OrderId, ProductDescription, Quantity, ProductCost & Total where CustomerID = '.....'
    I am having major problems with linking my tables and receiving duplicate results.
    At the Java side of things, i would select a customerID, and the above order details would be returned. Here is the code i am using:
    ResultSet res = stmt.executeQuery("select * from orderhistory o, customerinfo p, productinfo c where o.CustomerID = p.CustomerID");
    while(res.next())
    txtCustomerID.setText(res.getString("CustomerID"));
    txtArea.append("ORDER ID: " + res.getString("OrderID")+ "\n" );
    txtArea.append("**************************************************" + "\n");
    txtArea.append("Product Description: " + res.getString("ProductDescription" )+"\n");
    //txtArea.append("Product Quantity: " + res.getString("Quantity")+"\n" );
    txtArea.append("Product Indidvidual Cost: " + res.getString("ProductCost")+"\n" );
    txtArea.append("Product Total Cost: " + res.getString("Total")+"\n" );
    txtArea.append("**************************************************" + "\n");
    Any help would be greatly appreciated.

  • ResourceBundle Error... Please Help!!!

    Hello All,
    I wonder if anyone has encountered this error while using ResourceBundle.getBundle(String, Locale) method.
    Here is the error
    java.lang.NoSuchMethodError
    at java.util.ResourceBundle.findBundle(Compiled Code)
    at java.util.ResourceBundle.getBundle(Compiled Code)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:311)
    at myPackage.slui.core.util.localization.SUIResourceBundle.<init>(SUIResourceBundle.java:32)
    at myPackage.slui.core.uimsd.spm.ServiceSelectionViewHalf.getView(Compiled Code)
    at myPackage.slui.core.uimsd.spm.ServiceSelectionViewHalf.<init>(ServiceSelectionViewHalf.java:58)
    at myPackage.slui.core.uimsd.spm.ServiceSelectionController.<init>(ServiceSelectionController.java:26)
    at myPackage.slui.core.uimsd.GlobalUI.<init>(GlobalUI.java:25)
    at myPackage.slui.core.uimsd.ServiceUIManager.<init>(ServiceUIManager.java:538)
    at myPackage.slui.core.uimsd.ServiceUIManager.main(Compiled Code)
    Help on this is really appreciated.
    Thank you very much
    Brandon

    Hello All,
    I wonder if anyone has encountered this error while
    using ResourceBundle.getBundle(String, Locale)
    method.
    Here is the error
    java.lang.NoSuchMethodError
    at java.util.ResourceBundle.findBundle(Compiled Code)
    at java.util.ResourceBundle.getBundle(Compiled Code)
    at
    java.util.ResourceBundle.getBundle(ResourceBundle.java:
    11)
    at
    myPackage.slui.core.util.localization.SUIResourceBundle
    <init>(SUIResourceBundle.java:32)
    at
    myPackage.slui.core.uimsd.spm.ServiceSelectionViewHalf.
    etView(Compiled Code)
    at
    myPackage.slui.core.uimsd.spm.ServiceSelectionViewHalf.
    init>(ServiceSelectionViewHalf.java:58)
    at
    myPackage.slui.core.uimsd.spm.ServiceSelectionControlle
    .<init>(ServiceSelectionController.java:26)
    at
    myPackage.slui.core.uimsd.GlobalUI.<init>(GlobalUI.java
    25)
    at
    myPackage.slui.core.uimsd.ServiceUIManager.<init>(Servi
    eUIManager.java:538)
    at
    myPackage.slui.core.uimsd.ServiceUIManager.main(Compile
    Code)
    Help on this is really appreciated.
    Thank you very much
    Brandon Please compare you code with the following...
    Locale locale=new Locale("en","US");
    ResourceBundle bundle = ResourceBundle.getBundle("Message",locale);
    // Message should be 'message.properties' OR 'message_en_US.properties' for 'English' which should be present in the folderthe above code is working

  • IMovie unexpectedly quits - Driving me crazy, please help???

    Hi All
    I am in desperate need of help.
    I am currently trying to both Publish and or Export a project using iMovie 09. The project runs for 2 and half hours and contains various home movies I have recorded over the year. The actual footage has been recorded on both my Sony AVCHD camera and also my iphone 4 (both of which I have been able to publish projects with previously). The project is nothing fancy, it contains the usual Titles, Transitions and chapters. Every time I attempt to either publish or export the project I receive an error message advising “iMovie has unexpectedly quit“. I have tried to publish in all sizes (Tiny, Mobile, Medium, Large & HD) all with no success and have also tried exporting using imovie and quicktime numerous times with varying settings. All combinations continue to result in the same error message. On a side note I have created a smaller “Test Project” of which only runs for one minute, this again uses footage from both cameras and features the same Titles, Transitions and chapters. This file both publishes and exports without problem.
    As the smaller/shorter file/clip works I have to assume the problem relates to the size of my project, this then strikes me as being odd as I have other projects running upto 2hrs 53Min of which have been published in HD previously. I am using a 2.8 Ghz intel core 2 Duo processor with 4 GB Ram.
    When I proceed to send an error report to apple the start of the report reads as follows:
    Process: iMovie [19752]
    Path: /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier: com.apple.iMovie8
    Version: 8.0.6 (821)
    Build Info: iMovieApp-8210000~16
    Code Type: X86 (Native)
    Parent Process: launchd [78]
    Interval Since Last Report: 260128 sec
    Crashes Since Last Report: 4
    Per-App Interval Since Last Report: 84581 sec
    Per-App Crashes Since Last Report: 4
    Date/Time: 2011-01-12 21:11:44.715 +1100
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: ED0ECE17-A82C-4F3E-A0CB-5522C53ED1A7
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000042638000
    Crashed Thread: 16
    Does anyone have any ideas on what the problem could be ? its driving me nuts !!!!
    Regards
    Dylan

    Hi
    Does anyone have any ideas on what the problem could be ? its driving me nuts !!!!
    No - but may be You find some ideas here.
    *Not knowing the origin to Your problem - General approach when in trouble is as follows.*
    • Free space on internal (start-up) hard disk if it is less than 10Gb should rather have 25Gb
    • Delete iMovie pref file
    iMovie pref file resides.
    Mac Hard Disk (start-up HD)/Users/"Your account"/Library/Preferences
    and is named. (one or more of these)
    com.apple.iMovie.plist
    com.apple.iMovie3.plist
    com.apple.iMovie7.plist
    com.apple.iMovie8.plist
    and find
    com.apple.iApps.plist
    While iMovie is NOT RUNNING - move this/these file/s out on to desk-top.
    Now restart iMovie.
    • Hard disk is untidy. Repair Permissions, Repair Hard disk (Apple’s Disk Utilities application)
    • Garageband-fix. Start it, Play a note and Close it. Re-try (Corrects an audio problem that hinders iMovie)
    • Screen must be set to Million-colors
    • Turn off Mac and disconnect Mains/Power for 20-30 minutes - will at least re-set FW-port
    • Third party plug-ins that doesn't work OK (not relevant for iMovie’08 or 09)
    • Problems in iPhoto Library can affect iMovie to crash on start-up. Re-build this first then try to re-start iMovie.
    This You do by
    _ close iPhoto
    _ on start up of iPhoto - Keep {cmd and alt-keys down}
    _ now select all five options presented
    _ WAIT a long long time
    • iMovie updated ?
    • QuickTime updated ?
    • Mac OS version ?
    • Program miss-match. iMovie 4 - will not work under Leopard
    • Program miss-match. iMovie 5.0.2, up to Mac OS X.4.11 AND QuickTime 7.4.1 - is OK
    • Program miss-match. iMovie 6.0.3 or 6.0.4, Mac OS X.4.11 AND QuickTime 7.4.1 - is OK (will work under Leopard and Snow-Leopard)
    • Program miss-match. iMovie’08 v. 7.1.4, Mac OS X.4.11 AND QuickTime 7.5.5 - is OK (will work under Leopard and Snow-Leopard)
    • Program miss-match. iMovie’09 v. 8.0.6, Mac OS X.5.8 AND QuickTime 7.6.4 - is OK (will work under Leopard and Snow-Leopard)
    From LKN 1935. (in this case = iMovie HD (5), I tried it all, but nothing worked.
    Your answer (above) has been helpfull insofar as all the different trials led to the conclusion that
    there was something wrong with my iMovie software. I therefore threw everything away and reinstalled
    iMovie from the HD. After that the exportation of DV videos (there has not been any problem with HDV videos)
    to my Sony camcorders worked properly as it did before.
    Lennart Thelander
    I run "Cache Out X", clear out all caches and restarts the Mac.
    Yours Bengt W

Maybe you are looking for

  • ITunes crashes when iPod is connected

    Hello, I just got the 5th gen iPod and everytime I connect it to my powerbook g4 (10.4.3) itunes INSTANTLY crashes, as well as when trying to play a video itunes instantly crashes (this has been going on on and off since the video update) I am using

  • Second hand blackberry 9320

    My sister's friend gave me a second hand blackberry curve 9320.According to her, the phone was originally set in Arabic (she found the phone whens she was in Saudi). As a matter of fact, I never had BB before. So everything abount BB is new to me. So

  • Unable to create BI JDBC connection in JDeveloper

    I'm trying to follow the steps in http://docs.oracle.com/cd/E28271_01/bi.1111/e10545/sql_bi_view_object.htm#BHAFJIHC to create JDBC connection. But when I click on Test, it shows Working.. and never returns with success or failure messages. username:

  • Remote Control Best Practices

    Hello. I am new to the world of Mac. I have a bunch of Windows XP machines at home but just bought a MacBook White for my daughter for college. I would like to be able to provide tech support while she is away so I have to find a remote control solut

  • DTW & ITM1 - Update is OK but not Taking Affect

    HI All, I've been updating price lists with ITM1 and receiving a successful notification after it is complete. However, the changes are not taking place in the DB, I have checked within SAP B1 and the SQL Server using a query. I believe this is occur