• Member Avatar for peter_budo
    peter_budo

    Began Watching how to extract company name,person name in visitingcard androidorjava code

    how to extract company name and person name phone number on visiting card java or android code anyone can help
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in how to extract company name,person name in visitingcard androidorjava code

    Please explain more in detail what you are trying to do as above is not exactly clear...
  • Member Avatar for peter_budo
    peter_budo

    Marked Solved Status for Need help calling functions. Can't seem to get it right..

    Hey guys! So I'm making simple PetShop program based on an UML diagram I did. Anyway, I have 4 classes: PetShop(It's the main class), Pet, Customer, Transaction. I'm having an …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching Multiplying 2 numbers without using the * operator

    i'm a newbie in java and i got an assignment to do and i don't know how to start ... the problem is: Write a program that will compute for …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Multiplying 2 numbers without using the * operator

    @James he did actually felt in the need to share it with other websites too http://www.geeksforgeeks.org/multiply-two-numbers-without-using-multiply-division-bitwise-operators-and-no-loops/#comment-2063336220 @Abhishek_22 > "Once you start down the dark path, forever will it dominate your …
  • Member Avatar for peter_budo
    peter_budo

    Gave Reputation to JamesCherrill in Multiplying 2 numbers without using the * operator

    Do you really think anyone will be interested in trying to decode such a horrible pile of opaque code? Meaningless variable names and no comments. It's also far longer and …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching tranport.send() hangs

    Hi I have written a code for sending a mail, it was working fine before and now it hangs at tranport.send(). Can any one help, here my code `Inline Code …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in tranport.send() hangs

    Are you sure to posted whole code? `Transport` (According to Java 6 API, as this class does not exists in API 7 or 8) have to be first initialized from …
  • Member Avatar for peter_budo
    peter_budo

    Marked Solved Status for Payroll tax

    Hello I need help with this java tax assignment it is asking to Write the Java code needed to perform the following:• Calculate state withholding tax at 6.0%, and calculate …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching how to update kendo grid when sql table updated?

    I called one sql table "CarDetails" in more than two jsp's and i want to when from 1.jsp are updated "CarDetails" table then at that time update kendo grid from …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in how to update kendo grid when sql table updated?

    You will need to provide more details. Traditional approach would be that first JSP has some table where you edit fields and submit and then second JSP with fetch updates …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in difference between develop android apps using jdeveloper and eclipse

    > Isn't android used on mobile devices? Yes it is used > Aren't jdeveloper and eclipse development environments? Yes they are >How could this question possibly NOT be relevant to …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching difference between develop android apps using jdeveloper and eclipse

    Hi guys what is the difference between developing android application using jdeveloper and eclipse?
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in difference between develop android apps using jdeveloper and eclipse

    How is this question relevant to mobile development?
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Send URL to VLC player

    @Hanif1993 you welcome
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Read JSON and Implement buttons

    Simplest way (well by me) is GSON ([user guide](https://sites.google.com/site/gson/gson-user-guide) and [API](https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/index.html?com/google/gson/Gson.html)). Create model of the class, public class Movie { @SerializedName("id") int id; @SerializedName("name") String name; @SerializedName("link") String link; @SerializedName("image") …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching Read JSON and Implement buttons

    hello guys, am very new to android development, ans am trying to do my best to learn it,I have json output created from one of my PHP projects here is …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Read JSON and Implement buttons

    To understand your question better: A. Are you asking about how to process JSON in Java? or B. Are you asking how to set button image URL from parsed/processed JSON?
  • Member Avatar for peter_budo
    peter_budo

    Edited Read JSON and Implement buttons

    hello guys, am very new to android development, ans am trying to do my best to learn it,I have json output created from one of my PHP projects here is …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching how to create files in android version 4.x

    i use the below code to create file in android but the files are not created when i use android version 4.x but when i use version like 2.x the …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in how to create files in android version 4.x

    As per Android [documentation](http://developer.android.com/guide/topics/data/data-storage.html#filesExternal) you should use `getExternalStoragePublicDirectory` which will get you access to top-level public directory of specific type. Bellow snippet is getting access to pictore directory public File …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Send URL to VLC player

    Glad to hear that!
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Send URL to VLC player

    You are misunderstanding concept. This is not jar library that you add to your project, but rather expectation that user has this application installed on device and thereore with help …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching Send URL to VLC player

    Hello guys , am new to Android Development, I've created many test apps for learning, using webview and lists and creating multiple activities, I have an application that get URL …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Send URL to VLC player

    There is no official API yet as this is still under development. However according to VLC forum you just need to do this Intent intent = new Intent(Intent.ACTION_VIEW); intent.setPackage("org.videolan.vlc.betav7neon"); // …
  • Member Avatar for peter_budo
    peter_budo

    Edited xml parsing with asynktask

    i was developing an app for android where by clicking on buttons i could control the digital state of an Arduino board. Arduino responses with a xml file created in …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Android ListView not showing on real device

    Well done
  • Member Avatar for peter_budo
    peter_budo

    Began Watching Android ListView not showing on real device

    Hi guys, I'm having a weird problem regarding the simple ListView. On my emulator everything is allright and the data is loaded correctly from JSON API, the data also loads …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Android ListView not showing on real device

    Without seeing actual code hard to say...
  • Member Avatar for peter_budo
    peter_budo

    Began Watching MMO Android game

    so i want to make a MMO android game, but ive research and cant find what i need. id be thankful if u guys can point me to some tutorial …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in MMO Android game

    Maybe better idea to join some mobile game development forum instead of generic coding forum. I'm Android dev, but I will not able to correctly answer your question as I …
  • Member Avatar for peter_budo
    peter_budo

    Edited MMO Android game

    so i want to make a MMO android game, but ive research and cant find what i need. id be thankful if u guys can point me to some tutorial …
  • Member Avatar for peter_budo
    peter_budo

    Marked Solved Status for 'The registry refers to a nonexistent Java Runtime Environment installation

    When launching exe file, I am getting the following error, 'The registry refers to a nonexistent Java Runtime Environment installation or the runtime is corrupted. The system cannot find the …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching How to Connect eclipse and mysql connection using android?

    How to connect MySQL database in Eclipse on android application?
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in How to Connect eclipse and mysql connection using android?

    Do not make mistake of connecting mobile app to MYSQL direct. Setup rest service that will take request from app, it will query database and respond back to app with …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching Eclipse does not start emulator because of HAXM

    I have a problem with Eclipse when i try to start emulator it says: Starting emulator for AVD 'Nexus_5_API_21_x86' emulator: ERROR: x86 emulation currently requires hardware acceleration! Please ensure Intel …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Eclipse does not start emulator because of HAXM

    Register for [Genymotion](https://www.genymotion.com/#!/) (It's free), far better then current Android SDK provided emulator
  • Member Avatar for peter_budo
    peter_budo

    Began Watching suggestions what to learn to improve android programming skills

    Im android developer < I started with android without abase of java. well I worked as android developer for a year but I feel that my skills not improved very …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in suggestions what to learn to improve android programming skills

    Hard to judge what would be the targeted areas for improvements. Do you have any open source project we can have look? Otherwise I would ask how confident you are …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Dynamic Fragment Layout With Buttons In Android

    Yes, you can
  • Member Avatar for peter_budo
    peter_budo

    Began Watching Dynamic Fragment Layout With Buttons In Android

    I've been having this issue for a while and can't figure out how to fix it. I have one activity with four fragments. I'm having an issue with one fragment. …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Dynamic Fragment Layout With Buttons In Android

    Add button 1. Setup new layout just with button 2. When adding button inflate this new layout to reduce all that mess with `LinearLayout.LayoutParams` 3. Then add button to parent …
  • Member Avatar for peter_budo
    peter_budo

    Edited Dynamic Fragment Layout With Buttons In Android

    I've been having this issue for a while and can't figure out how to fix it. I have one activity with four fragments. I'm having an issue with one fragment. …
  • Member Avatar for peter_budo
    peter_budo

    Gave Reputation to JamesCherrill in Creating an excel file after checking it doesn't exist

    When you declare a variable its scope is from the immediately preceeding `{` to the immediately following `}`. So your `excel` variable is in scope from line 211 to 213 …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching windows phone 8.1 location

    i need tutorial of how can i get the location and tracking it video with sample will be perfect
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in windows phone 8.1 location

    I need £1.000.000.000.000, damn nothing happend Maybe good idea to reconsider for future how you phrase your question But hey sometimes it drizzle even if you need it to rain, …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Creating an excel file after checking it doesn't exist

    Ahhh, OK. Simple, lets examine code (sorry for cheeky comments) if(new File("ATM.xls").exists()){ //check if file exists System.out.println("File exists"); //YES it does exist //but I failed to assigned to some object …
  • Member Avatar for peter_budo
    peter_budo

    Began Watching Creating an excel file after checking it doesn't exist

    Hi! Firstly, here's the code: if(new File("ATM.xls").exists()){ System.out.println("File exists"); } else{ File excel = new File("ATM.xls"); } What I'm trying to do is check whether or not a file exists …
  • Member Avatar for peter_budo
    peter_budo

    Replied To a Post in Creating an excel file after checking it doesn't exist

    That only creates WritableWorkbook, an object to which you have to write some data and then close in order for file to be generated. Check these examples http://www.programcreek.com/java-api-examples/index.php?api=jxl.write.WritableWorkbook
  • Member Avatar for peter_budo
    peter_budo

    Edited Redirection from Spring Controller to another servlet

    Hi, I have an issue with redirecting from my Spring controller to another servlet. Something similar to RequestDispather.forward. I get the below error. org.springframework.web.servlet.DispatcherServlet noHandlerFound No mapping found for HTTP …

The End.