Java Video Tutorials / Class Teaching

Hi, is there any good website where we can find video java tutorials / video class teaching on topics like multithreading, JMS (Java Messaging Service) and Networking / Socket Programming .

Java is very light on "video tutorials". YouTube might have some but they are normally poop.

Similar Messages

  • Java Video Tutorials

    Hi, is there any good website where we can find video java tutorials / video class teaching on topics like multithreading, JMS (Java Messaging Service) and Networking / Socket Programming .

    Hi, This was my first question , so by mistake i cross posted.
    I will take care of this in future.

  • Video Tutorials for java beginners

    Hi there! My name is Donato and I'm developing some video tutorials addressed to those people who would like to learn a bit of Java but don't feel like reading endless books.
    They will cover easy topics and will show everything step by step.
    I'd like to know if someone is interested in supporting and helping me. Here's an example of the first of this flash tutorials:
    http://scorpio2002.altervista.org/Java/java_1.zip
    What do you think?
    Ciao,
    Donato
    Italy

    you learn to do it by writing code.I don't remember having stated that you learn a
    language in a way other than writing code.
    I said in the video that the only way to learn a
    programming language is to write a lot of code...
    You don't learn to program by watching videos; At this rate, one could say "You don't learn to
    program by reading books" :-)
    A video is just a different way of getting started.
    Some people are just scared by programming and need a
    soft way to get involved.
    Serious people will be reading those endlessbooks
    After you got involved, you'll get thousands of books
    and you'll go into the "guts" of the language.
    Personally I like books... but I don't see why - if
    you get started with some videos and then, if you're
    still interested, you pass to books - you're not
    serious. Can you just explain me what the difference
    is?
    The "endless" books are usually about advancedtopics, not the introductory stuff that a video
    covers.
    You're right. :D And I don't remember saying
    something different.
    Sorry, I don't think it's a great idea.I thank you anyway. I posted this topic just to see
    if there was someone interested. :-)
    And these videos are not meant for experienced
    developers like you. This video are to be made BY
    experienced developers like you... :D Maybe there has
    been a missunderstanding, sorry, but my English is
    not that well... :(So what do you care what we think? Make them, market them, and let the marketplace decide how good your idea is. If they sell, you're right. Your balance sheet will be the best scorecard there is.
    %

  • Learning to use a Mac- where are the video tutorials?

    I am an old PC user, converting to this sleek machine after loving my iphone. but I am really struggling to understand all the new conventions, keystrokes, and shortcuts. I can't even really understand safari- there is no "web address" window at the top, so I go to google for everything.
    Are there not video tutorials somewhere on my machine? reading the articles is hard to do if I don't see the interface.

    Doctormark,
    Welcome to Apple Discussions. Here is some great information that will make your transition smoother. I would recommend going through these in order.
    http://www.apple.com/support/switch101/
    http://www.apple.com/support/mac101/
    The first link is designed to prepare you for moving from Windows to OS X. The next link is teach you about your new Mac.
    Last if you are any where near an Apple Store I would recommend taking some of their free classes. You can visit this link, it will take you down the right path.
    http://www.apple.com/retail/
    Regards,
    Roger

  • Papyrus Video Tutorials for Beginners

    Hi Everyone,
    While learning how to use Papyrus (with thanks for some people in this forum), I recorded a series of Video Tutorials about the basics of Papyrus.
    Though focused on the use of Papyrus, in particular for Java models, they also contain a bit of basics of UML.
    This is the list of videos I have recorded and made available so far:
    UML Tutorial 0.2 - Installing the Eclipse Papyrus plugin for Java UML Modelling: https://www.youtube.com/watch?v=gmf8CswqKcs
    UML Tutorial 1.0 - Use Case Diagrams in Eclipse with Papyrus: https://www.youtube.com/watch?v=wuRDaN_7xq8
    UML Tutorial 1.1 - Use Case Scenarios: https://www.youtube.com/watch?v=dsdEHND-YL8
    UML Tutorial 2.0 - Basics of Activity Diagrams in Eclipse with Papyrus: https://www.youtube.com/watch?v=G4RMgO0gi-k
    UML Tutorial 3.0 - Basics of Java Class Diagrams in Eclipse with Papyrus: https://www.youtube.com/watch?v=Pim22rLtsW0
    UML Tutorial 3.1 - Java Constructors in a Class Diagram in Eclipse with Papyrus: https://www.youtube.com/watch?v=Er2w1pfCycA
    UML Tutorial 3.2 - Association relationships in a Java Class Diagram in Eclipse with Papyrus: https://www.youtube.com/watch?v=Rk7AnVk0adc
    UML Tutorial 4.0 - Modelling Java Inheritance in Eclipse with Papyrus: https://www.youtube.com/watch?v=m-ykJCK_pWY
    Will periodically update this list as more videos are released.
    You will notice that each video deals with one small topic. I decided to opt for this format to avoid a situation in which people have to listen to a long story before that doesn't interest them to something they wish to learn about.
    I have the intention to record videos for every common UML Model, but given I'm doing this in my free time I cannot really put a deadline on it.
    Lastly, not sure if putting my videos up here is allowed within the rules of this forum, if it isn't please just let me know.

    Thanks, Karel, for the initiative!
    It is greate to see the community get involved in this manner.
    You can find the Papyrus YouTube channel at https://www.youtube.com/channel/UCxyPoBlZc_rKLS7_K2dtwYA

  • Finding a java video streaming player

    I recently use FreePastry to implement a p2p video streaming system.
    But now i have a new challege, which bother me several days.
    In Splitstream, which uses Byte[] to send the data to other peer.
    I want find a java video player. It would be best to receive Byte[] as input.
    I try JMF, but it use RTP as the input.
    Is there any other video players suited about my case.

    There is a function in LiveStream.java called read. Read passes in a buffer object. The goal is to write all of the data you have available into the buffer object.
    What you want to do is something along the lines of the following pseudocode...
    public void read(Buffer buffer) throws IOException {
        synchronized (this) {
            /* Get the data */
            byte[] data = FunctionThatGetsByteArrayFromTheNetwork();
            /* Write the data to the buffer object */
            buffer.setData(data);
    }As for using the PushBufferDataSource, you just create one like you would a normal class (just use the new operator) and give it to a processor or a player like you would a normal data source.
    You need to include the DataSource.java code like the example does, modify it to use your modified LiveStream.java (you'll probably change the names of classes, so update the DataSource.java class to reflect those changes) and then just use it to create your DataSource.
        /* From DataSource.java */
        DataSource ds = new DataSource();
        /* Normal way of doing this */
        Processor p = Manager.createProcessor(ds);

  • Best online training - video tutorials

    Although I have seen some threads earlier on the training programs but just thought get a latest update from the forum members.
    Please suggest me a best online site that has the best tutorial (video tutorials)to learn FCP. And also cheap like lynda.com. I am looking for mainly a video tutorial rather than the book version.
    thanks all

    Hey Jim
    Google is such a basic thing anybody would do, I was hoping to get advice from experienced seniors on the subject and not to teach me how to google.
    All the site you identify in google may not be too good, before you enroll somewhere and loose money I wanted to make sure.
    You dont have to term 'google' under your initiatives...even a baby these days would google. I already have a long list of sites with me after doing a google research for over a week.
    If you really have used those sites please suggest but try to proove your intelligence here, I didn't force you to give me the reply.
    Finally please keep in mind, dont expect everybody who posts here is a dumb or fool

  • Video Tutorials on YouTube Legal?

    Hello
    Is it legal to create and upload video tutorials on YouTube using Adobe Software that is Monetized for revenue?
    Thanks

    bryced87 wrote:
    where in the End Users License Agreement of Adobe Software does it say I can use their software for commerical use? I don't see anywhere where it talks about that.
    Never been asked that question in relation to non-education versions of Adobe software.
    The EULA wording is more about what you can do to the software rather than with it and it's more about explicit restrictions rather than permissions. There's no specific clause that I'm aware of which says it's OK to use commercially but it's been used commercially since the day version 1 was released.
    I've always understood that how you use it is up to you, providing there's no license restriction to the contrary.
    There a specific FAQ for using Student and Teacher Editions commercially.
    http://helpx.adobe.com/x-productkb/policy-pricing/education-faq.html

  • Quicktime Pro Video Tutorials

    Not more than 1 or 2 months ago there were some video tutorials on developer.apple.com, teaching people how to create hinted movies, and basic editing with QT pro. In those videos appeared (apple employees) people that work on the QT platform. The videos were linked off apple's main website, but I can't remember where. I've searched all over the place, but with the new website layout things are not where they used to be.
    Any hints would be appreciated.
    Thanks!

    thanks for trying, but no. i know how to login to developers.apple.com; i have an account. what i'm looking for is video tutorials on how to use QT pro made by apple employees that work on the QT platform. i was able to find those on the main apple.com QT page!?, than i was directed to developers.apple.com to d/l those videos.

  • Very Good Speed Grade Video Tutorials

    Hello Everyone.
    I Highly recommend this Video Tutorials By: Lynda.com on Speed Grade.
    The Instructor done a great job Teaching.
    Watch the Online Video Course Up and Running with SpeedGrade CC

    Sorry, I didn't make it clear.
    I mainly wanted freely available tutorials that I could direct others to on the FCE and other forums. Frequently newcomers don't know where to start, and I don't have time to write a new manual, so it is very efficacious to be able to point them to a site with free tutorials.
    That LiveType source I quoted is excellent. So now, basically all I am looking for is a similar one for Soundtrack and FCE/FCP.
    The first one you linked is probably fine except for the download time which would probably have taken several hours per tutorial, which is going to put off many newcomers looking for a quick-fix.
    I must admit I also like looking at tutorials (I never used to!) because every one of them has a different angle and it's surprising what you can pick up, that you have missed in others.

  • Video tutorials with Captivate 6

    Hello !
    In the past, I used Flash Media Server to display FLV videos tutorials for my primary school pupils (I'm a primary school teacher). Now, I'm using Adobe Captivate to do it, and it's the firts time I'm using it. I wanted to benefit from the html5 option and make sure my videos would display on tablets for instance.
    Here is the result :
    http://www.webdesecoles.org/coursdeguitare/
    I don't know why I don't have the play button, etc. On the following page, I get a player with controls for the videos :
    http://www.webdesecoles.org/coursdeguitare/multiscreen.html
    I'm certainly not doing it the best way, and there are a few problems...
    If i use Firefox I get this message :
    "This browser does not support some of the content in the file you are trying to view. Use one of the following browsers:
    Internet Explorer 9 or later
    Safari 5.1 or later
    Google Chrome 17 or later"
    Videos appear in other bowsers, but it takes a long time... Is it because I chose "Progressive download" ?
    Can you tell me how I can fix these problems and make all this work better ?
    Thank you !

    Hi
    The audio is from a .cpvc file, I export the audio to perform a noise removal and a few minor edits, then to  overcome the loading screen issue I have tried to create the project several ways:
    I reimport the audio back into the .cpvc as voice narration and 'yes '"change the audio for the video recording" this is then exported and imported into the slide of the .cptx this presents the laoding screen issue.
    I have imported the video and audio into the .cptx as individual tracks but this creates a sync issue on playback along with the loading screen issue.
    I have exported the video / audio and split it into segments not exceding 2 minutes in length, using both methods above, but still get the loading screen on playback.
    All the ppt slides and the audio imported into them work fine without any issues.
    I am making a lot of training videos all the same composition and the video loading screen issue happens everytime I use video within the training video (they are all from a Captivate .cpvc file)
    Is this just a factor of Captivate that with video files the published project will need to pause and load throughout video playback?
    thanks

  • Java application with classes to Applet?

    Hello,
    First, I'm a Java junior, but I can make efforts to analyse and understand code.
    I saw an interesting open-source multiplayer poker java application: [JiBi's Hold'Em|http://sourceforge.net/projects/jibisholdem/]
    I would like to try to add it as an Applet on my server, but I have some questions.
    1- Do you think it is possible to make it fully works as an Applet (eg: through a proxy), as it seems to use a specific protocol and many classes?
    2- I tried the idea of GumB: http://forums.sun.com/thread.jspa?threadID=390846&start=13&tstart=0
    with getContentPane().add( new javaApp().getContentPane()but I have the following error message:
    I also tried with imports (import holdem.core.Card;etc) and with HoldEmClientGUI().getContentPane() or holdem.gui.HoldEmClientGUI().getContentPane()
    D:\JiBisHoldem\src\holdem\gui\HoldEmApp.java:7: cannot find symbol
    symbol  : class HoldEmClientGUI
    location: class HoldEmApp
            getContentPane().add( new HoldEmClientGUI().getContentPane() );
                                      ^
    1 errorAm I close or really far from a working result?
    Thanks
    John.

    The above way seems to have the same result as getContentPane().add( new javaApp().getContentPane().
    Here is my HoldEmClientGUI.java (I have commented unused lines like title):
    package holdem.gui;
    import holdem.core.Card;
    import holdem.core.Choice;
    import holdem.core.Player;
    import holdem.gui.interfaces.ClientGUIInterface;
    import holdem.gui.menu.MainMenuBar;
    import holdem.gui.panel.PokerChoiceListPane;
    import holdem.gui.panel.PokerMainPane;
    import holdem.gui.panel.PokerPlayerPane;
    import java.awt.BorderLayout;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.HashMap;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JApplet;
    import sun.audio.AudioPlayer;
    import sun.audio.AudioStream;
    import tools.AppProperties;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class HoldEmClientGUI extends JApplet {     
         public static void main(String[] args) {
              HoldEmClientGUI app = new HoldEmClientGUI();
              app.init();
              app.start();
         public void init()
              AppletContext ac = null;
              try
                   ac = getAppletContext();
              catch(NullPointerException npe)
              //new HoldEmClientGUIFrame(ac);
              new HoldEmClientGUIFrame();
    class HoldEmClientGUIFrame extends JFrame implements ClientGUIInterface {
         private static final long serialVersionUID = 1L;
         private String m_mainTitle = "";
         private String m_title1 = "";
         private String m_title2 = "";
         private HashMap<Integer, PokerPlayerPane> m_playerPaneList = null;
         private PokerMainPane m_pokerMainPane = null;
         private MainMenuBar m_pokerMainMenuBar = null;
         private PokerChoiceListPane m_pokerChoiceListPane = null;
         //AppletContext ac;
         //HoldEmClientGUI(AppletContext ac) {
         HoldEmClientGUIFrame() {
              //super();
              //this.ac = ac;
              //Set Icon
              //setIconImage(new ImageIcon(getClass().getResource(AppProperties.getInstance().getProperty("holdem.images.icon.logo"))).getImage());
              m_mainTitle = AppProperties.getInstance()
                        .getProperty("holdem.config.title")
                        + " - v"
                        + AppProperties.getInstance().getProperty(
                                  "holdem.config.version");
              //refreshTitle();
              // adding PokerTable
              getContentPane().add(getPokerMainPane(), BorderLayout.CENTER);
              getContentPane().add(getPokerChoiceListPane(), BorderLayout.SOUTH);
              getContentPane().add(getPokerMainMenuBar(), BorderLayout.NORTH);
              // init playerPaneList
              m_playerPaneList = new HashMap<Integer, PokerPlayerPane>();
              //setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              // setSize(200, 100);
              /* Add the window listener */
              addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent evt)
                        dispose();
                        if (AppletApplicationFrame.this.ac == null)
                             System.exit(0);
              setVisible(true);
              pack();
         private void refreshTitle(){
              //setTitle(m_mainTitle+m_title1+m_title2);
         private PokerMainPane getPokerMainPane() {
              if (m_pokerMainPane == null) {
                   m_pokerMainPane = new PokerMainPane();
              return m_pokerMainPane;
         private PokerChoiceListPane getPokerChoiceListPane() {
              if (m_pokerChoiceListPane == null) {
                   m_pokerChoiceListPane = new PokerChoiceListPane();
              return m_pokerChoiceListPane;
         private MainMenuBar getPokerMainMenuBar() {
              if (m_pokerMainMenuBar == null) {
                   m_pokerMainMenuBar = new MainMenuBar();
              return m_pokerMainMenuBar;
         public void addPlayer(Player player) {
              PokerPlayerPane playerPane = new PokerPlayerPane();
              playerPane.initPlayer(player.getId(), player.getSeatNumber(), player
                        .getNickname(), player.getStack(), player.getPlayerType());
              getPokerMainPane().addOnSeat(playerPane, player.getSeatNumber());
              m_playerPaneList.put(player.getId(), playerPane);
         public void setPlayerCardHighlighted(boolean highlighted, int playerId,
                   int cardNumber) {
              PokerPlayerPane playerPane = getPlayerPaneByPlayerID(playerId);
              if (playerPane != null) {
                   playerPane.setCardHighlighted(highlighted, cardNumber);
         public void setTableCardHighlighted(boolean highlighted, int cardNumber) {
              m_pokerMainPane.setCardHighlighted(highlighted, cardNumber);
         public void setAllCardsHighlighted(boolean highlighted) {
              ArrayList<PokerPlayerPane> playerPaneList = new ArrayList<PokerPlayerPane>(
                        m_playerPaneList.values());
              for (int playerCounter = 0; playerCounter < playerPaneList.size(); playerCounter++) {
                   playerPaneList.get(playerCounter)
                             .setCardHighlighted(highlighted, 0);
              m_pokerMainPane.setCardHighlighted(highlighted, 0);
         public Choice displayChoices(ArrayList<Choice> choiceList) {
              return getPokerChoiceListPane().displayChoices(choiceList);
         public void displayAsyncMsg(String msg) {
              getPokerMainPane().displayTempoMsg(msg);
         public int getBetValue() {
              return getPokerChoiceListPane().getBetValue();
         public void addCardToPlayer(int playerId, Card card) {
              PokerPlayerPane playerPane = getPlayerPaneByPlayerID(playerId);
              if (playerPane != null) {
                   playerPane.addCard(card);
         public void addCardToTable(Card card) {
              getPokerMainPane().addCardToTable(card);
         public void removeCardsFromPlayer(int playerId) {
              PokerPlayerPane playerPane = getPlayerPaneByPlayerID(playerId);
              if (playerPane != null) {
                   playerPane.removeCards();
         public void removeCardsFromPlayers() {
              ArrayList<PokerPlayerPane> playerPaneList = new ArrayList<PokerPlayerPane>(
                        m_playerPaneList.values());
              for (int playerCounter = 0; playerCounter < playerPaneList.size(); playerCounter++) {
                   playerPaneList.get(playerCounter).removeCards();
         public void removeCardsFromTable() {
              getPokerMainPane().removeCards();
         private PokerPlayerPane getPlayerPaneByPlayerID(int playerID) {
              PokerPlayerPane foundPlayerPane = (PokerPlayerPane) m_playerPaneList
                        .get(playerID);
              return foundPlayerPane;
         public void setButton(int seatNumber, int buttonType) {
              m_pokerMainPane.setButton(seatNumber, buttonType);
         public void setConnectionStatus(boolean isConnected, String nickname) {
              m_pokerMainMenuBar.setConnectionStatus(isConnected);
              m_title1 = " - " + nickname;
              if (isConnected) {
                   m_title1+=" is Connected";
              } else {
                   m_title1+=" is not Connected";
              refreshTitle();
         public void setPot(int potValue) {
              getPokerMainPane().setPot(potValue);
         public void setPlayerStack(int playerID, int newStack) {
              PokerPlayerPane playerPane = getPlayerPaneByPlayerID(playerID);
              if (playerPane != null) {
                   playerPane.setStack(newStack);
         public void setCurrentBetValue(int playerID, int betValue) {
              PokerPlayerPane playerPane = getPlayerPaneByPlayerID(playerID);
              if (playerPane != null) {
                   playerPane.setCurrentBet(betValue);
         public void setPlayerAction(int playerID, int PLAYER_ACTION) {
              PokerPlayerPane playerPane = getPlayerPaneByPlayerID(playerID);
              if (playerPane != null) {
                   playerPane.setAction(PLAYER_ACTION);
         public void playSound(int ACTION) {
              String soundPath = "";
              switch (ACTION) {
              case ClientGUIInterface.ACTION_ALLIN: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.chips.allin");
                   break;
              case ClientGUIInterface.ACTION_BET: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.chips");
                   break;
              case ClientGUIInterface.ACTION_CALL: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.chips");
                   break;
              case ClientGUIInterface.ACTION_RAISE: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.chips");
                   break;
              case ClientGUIInterface.ACTION_PAY_SMALL_BLIND: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.chips");
                   break;
              case ClientGUIInterface.ACTION_PAY_BIG_BLIND: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.chips");
                   break;
              case ClientGUIInterface.ACTION_CHECK: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.check");
                   break;
              case ClientGUIInterface.ACTION_FOLD: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.fold");
                   break;
              case ClientGUIInterface.ACTION_DEAL_CARDS: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.card");
                   break;
              case ClientGUIInterface.ACTION_REMOVE_CARDS: {
                   soundPath = AppProperties.getInstance().getProperty(
                             "holdem.sounds.remove_cards");
                   break;
              default: {
              if (soundPath != null && !soundPath.trim().equals("")) {
                   try {
                        AudioPlayer.player.start(new AudioStream(getClass()
                                  .getResource(soundPath).openStream()));
                   } catch (IOException ioe) {
                        System.err.println("Unable to play sound:\n" + soundPath
                                  + "\n\n" + ioe);
         private void displayBlindValues(int curSB, int curBB, int nextSB, int nextBB){
              //m_title2=" - "+curSB+"/"+curBB+" (next values "+nextSB+"/"+nextBB+")";
              //refreshTitle();
         public void raiseBlinds(int curSB, int curBB, int nextSB, int nextBB){
              displayBlindValues(curSB,curBB,nextSB,nextBB);
    }The error when calling HoldEmClientGUI.class (I have 2 files HoldEmClientGUI.class and HoldEmClientGUIFrame.class, is it normal?):
    java.lang.VerifyError: (class: holdem/gui/menu/MainMenuBar, method: handleSettingsItem signature: ()V) Incompatible argument to function
         at holdem.gui.HoldEmClientGUIFrame.getPokerMainMenuBar(HoldEmClientGUI.java:145)
         at holdem.gui.HoldEmClientGUIFrame.<init>(HoldEmClientGUI.java:95)
         at holdem.gui.HoldEmClientGUI.init(HoldEmClientGUI.java:54)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)MainMenuBar.java:
    import holdem.gui.dialog.ClientInputDialog;
    import holdem.gui.dialog.ServerInputDialog;
    import holdem.gui.dialog.SettingsDialog;
         private void handleSettingsItem() {
              new SettingsDialog(getHoldEmClientGUI());
         private HoldEmClientGUI getHoldEmClientGUI() {
              HoldEmClientGUI gui = null;
              Container curContainer = this;
              do {
                   curContainer = curContainer.getParent();
              } while (curContainer instanceof Container
                        && !(curContainer instanceof HoldEmClientGUI));
              if (curContainer instanceof HoldEmClientGUI) {
                   gui = (HoldEmClientGUI) curContainer;
              return gui;
         }I think the problem comes from private HoldEmClientGUI getHoldEmClientGUI() but I don't know what is wrong in it.
    Edited by: Quezako on Oct 14, 2008 7:51 AM

  • How To Add Days into a Date from java.util.Date class

    I have a problem when i wants to add 2 or days into a
    date object geting by java.util.Date class. so please help me resolve this issue?
    for e.g i have a date object having 30/06/2001,
    by adding 2 days i want 02/07/2001 date object ?
    Code
    public class test2
    public static void main(String args[])
    java.util.Date postDate = new java.util.Date();
    myNewDate = postDate /* ?*/;
    Here i want to add 2 date into postDate

    Use Calendar...
    Calendar cal = Calendar.getInstance();
    cal.setTime(new Date());
    cal.add(Calendar.DAY, 2); // I'm not sure about that "DAY"

  • Error: initialization error: file java\lang\Object.class not found

    when the error listed my classpath's its not the same list that is in my Windows XP environment variable list?
    I am on 9.0.3
    I am assuming I have to set some varible to my new jdk\bin directory. I reinstalled it. I have set it to use jdk 1.4 using the ojvm tool a while back.

    Please help!!
    I did change the jdev.conf file setting:
    SetJavaHome /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home
    and I still get this error:
    initiallization erro: file java/lang/Object.class not found in classpath
    I am usgin Oracle JDeveloper 10g 10.1.2 on a Mac OS X Tiger
    Could someone please help?
    thanks a bunch!!!

  • I can't read Or write I have been using the iPad With the accessibility icon Is there a video help them teach me how to use it more efficiently

    I cannot read or write I have been using the iPad With the accessibility icon  Is there a video to help teach me To learn how to use this accessibility more efficiently

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

Maybe you are looking for

  • Matrix values are not displayed

    Hi, Im trying to select some data to matrix ,Here datas im selecting from database. im  seting values it is showing error ex.Message = "Data Source - Out of boundaries  [66000-29]" i did code like this rs.MoveFirst()             For I = 1 To rs.Recor

  • Is there any information which tells us more about the ranking system please?

    Is itunes in ranking or alphabetical order please? Is new and noteworthy updated daily or weekly?

  • Transaction codes in BDC

    Hi Experts, CAn someone please explain how to use a transaction code in BDC???

  • Optical drive won't read or eject...most of the time

    I just bought the new MBP online and already had to return it for repairs because it was DOA. (Dead on arival) It was working fine but recently it has stopped taking in dvds for some reason. It wouldn't mount some games, movies, of iWork. After tryin

  • Performance with join

    Hi, Could you please give me tips to improve the performmance of the following joins. SELECT ekbe~ebeln            ekbe~ebelp            ekbe~vgabe            ekbe~matnr            ekbe~menge            ekbe~shkzg            ekpo~werks            ekp