About

Prajwalan

Professionally, I am a Software Developer and but currently I am doing MSc.

Current Location: Norway
Country of origin: Nepal
University:

In Norway, NTNU (www.ntnu.no || www.item.ntnu.no)

In Finland, TKK (www.tkk.fi)

Personal Website: http://www.prajwalan.com

Personal Blog: http://prajwalan.wordpress.com


11 Responses to “About”  

  1. 1 Padam Raj

    Great!

  2. “Knowledge is for sharing” which I found somewhere at the end of your article; very positive thinking which brings you up never down. When I get some time and it strikes in my mind.. I use to visit your blogs…keep it lively.. Thanks!
    -Rajendra

  3. 3 Manisha

    Hi,

    I’ve installed Visual Webdeveloper 2008 Express Edition with SP1 in Windows Vista Ultimate.

    I cannot create a project, I get Project Creation Failed message.

    Can you help me with a solution

    Thank you.

  4. Hi Prajjwalan, long time to get you in contact…
    how u doing ???
    well can you tell me some useful URL for downloading java PFD e-files… I have found some of these and if you have any will you share with me???

    well good luck to ur career … hope to see you here in USA…

    Jeewan Aryal
    Fairfax, virginia
    USA

  5. Hi prajjwalan
    I wanted to run this code :

    import javax.sound.midi.*;
    public class MusicTest1 {
    public void play() {
    Sequencer sequencer = MidiSystem.getSequencer();
    System.out.println(“We got a sequencer”);
    }
    public static void main(String [] args) {
    MusicTest1 mt = new MusicTest1();
    mt.play();
    }
    }

    but getting error saying

    E:\java files\javafiles\MusicTest1.java:4: unreported exception javax.sound.midi.MidiUnavailableException; must be caught or declared to be thrown
    Sequencer sequencer = MidiSystem.getSequencer();
    ^
    1 error

    Tool completed with exit code 1

    what should i do to run this ???
    Please reply me

  6. 7 prajwalan

    Hi Jeewan,

    You must catch the exception or declare it with “throws” keyword.
    Try this:
    public void play()
    {
    try
    {
    Sequencer sequencer = MidiSystem.getSequencer();
    System.out.println(”We got a sequencer”);
    }
    catch(MidiUnavailableException muexp)
    {
    }
    }

    OR

    public void play() throws MidiUnavailableException
    {
    Sequencer sequencer = MidiSystem.getSequencer();
    System.out.println(”We got a sequencer”);
    }

  7. thankx prajjwalan ,
    ya now i understood…

  8. 9 Silviu

    Hello prajjwalan . Thanks for your greatest work .
    If you want you can check my website .. I’ve waited some interesting articles in c++ there .
    Best regards

  9. 11 Silviu

    The url is htp://www.intelliproject.net .
    Please send me a feedback if you can !


Leave a Reply