import java.util.Calendar; import java.util.Date; public class test { public static void main(String[] argv) { String s = "Here, startIndex specifies the beginning index, and endIndex specifies the stopping point. The string returned contains all the characters from the beginning index, up to, but not including, the ending index. The following program uses substring( ) to replace all instances of one substring with another within a string:";// used to insert any string or character at the specified position in the given string."; int charsPerLine = 10; System.out.println(insertLinebreaks(s, charsPerLine)); } public static String insertLinebreaks(String s, int charsPerLine){ String[] tokens = s.split(" "); String temp=""; String retS = ""; int maxRightPadding = 5; // Increasing the value'll minimize the risk of cutting a word unexpectedly, but woun't give good performance to break continuous string(without space/br). for (int i=0; i charsPerLine){ if((charsPerLine - temp.length()) <= maxRightPadding){ retS = retS+temp+ "\n"; for(int o=0; o<= (tokens[i].length()/charsPerLine); o++){ if(o< tokens[i].length()/charsPerLine){ retS = retS + tokens[i].substring((o*charsPerLine), ((o*charsPerLine) + charsPerLine))+"\n"; } if(o == tokens[i].length()/charsPerLine){ temp = tokens[i].substring(o*charsPerLine); } } }else{ retS = retS+temp+ "\n"; temp = tokens[i]; } }else{ if((temp.length() + tokens[i].length()) <= charsPerLine){ temp = temp+" "+tokens[i]; } else{ retS = retS+ temp + "\n"; temp = tokens[i]; } } } retS = retS +temp+ "\n"; return retS; } }
Category Archives: Uncategorized
jQuery Ajax Tooltip
This is very much based on the Coda Popup Bubble example for jQuery that’s been going around with a few important differences:
- The information is requested via AJAX, so you don’t have to include all of this extra information in a hidden div. This keeps your markup smaller for grids with tons of names in it.
- When you mouse over another name, the previous one will disappear. If you tried this with the original Coda example, you’d end up with a weird streaking animation since there’s a delay before the div is hidden.
- Works in IE (just turned off the fade animation)
Get JSON data using jQuery AJAX from a PHP page
Today I’ll show you simple procedure to get JSON data using jQuery AJAX from a PHP page.
Dependencies: Put jQuery library in same folder named after jquery.js. You can get jquery here .
Need a server to run php.
Now put jquery.js, AJAXtestJSON.php and AJAXJSONdata.php in same folder in server.
Here is the code of AJAXtestJSON.php
Here is the code of AJAXJSONdata.php
Handling checkbox in a PHP form processor
This tutorial will introduce HTML check boxes and how to deal with them in PHP.
Single check box
Let’s create a simple form with a single check box.
<
form
action
=
"checkbox-form.php"
method
=
"post"
>
Do you need wheelchair access?
<
input
type
=
"checkbox"
name
=
"formWheelchair"
value
=
"Yes"
/>
<
input
type
=
"submit"
name
=
"formSubmit"
value
=
"Submit"
/>
</
form
>
25 Google Search Tips
We all love Google. It’s a great place to search and find things that we do not know about. The beauty of Google is its all powerful algorithm that executes billions of search queries. In addition to showing top notch search results, Google’s algorithm has a few interesting features.
We’ll be taking a look at a few tips that can help us tap into the full power of Google.
World Time
World Time
time cityname
cityname time
Want to know what’s the current local time in a city across the globe? Google can help you. Continue reading
Useful Links for XSS
Php page redirection problem
So far i did web development I used javascript redirection. But recently i needed to do that with php. But i got stacked with some annoying problems.
1. Headers are already sent.
2. SESSION variables are not setting.
1. Ok, now here javascript again rescue me see how.
function redirect($url) { if(!headers_sent()) { //If headers not sent yet... then do php redirect header('Location: '.$url); exit; } else { //If headers are sent... do javascript redirect echo ''; echo 'window.location.href="'.$url.'";'; echo ''; echo ''; echo ''; echo ''; exit; } }
What you need to do just call this method with your desired parameter.
2.-> And now number second! SESSION variables are not setting means you are not getting SESSION variables from redirected page.
The solution is never forget to add “exit;” like a added here.
If you are stilling facing second problem, may you forgot to start session in that page!
A nice script to upload a image and re-sizing them
MAX_SIZE*1024){ echo "You have exceeded the size limit"; $errors=1; } if($extension=="jpg" || $extension=="jpeg" ){ $uploadedfile = $_FILES['file']['tmp_name']; $src = imagecreatefromjpeg($uploadedfile); } else if($extension=="png"){ $uploadedfile = $_FILES['file']['tmp_name']; $src = imagecreatefrompng($uploadedfile); } else { $src = imagecreatefromgif($uploadedfile); } list($width,$height)=getimagesize($uploadedfile); $newwidth=60; $newheight=($height/$width)*$newwidth; $tmp=imagecreatetruecolor($newwidth,$newheight); $newwidth1=25; $newheight1=($height/$width)*$newwidth1; $tmp1=imagecreatetruecolor($newwidth1,$newheight1); imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height); imagecopyresampled($tmp1,$src,0,0,0,0,$newwidth1,$newheight1,$width,$height); $filename = "images/small/". $_FILES['file']['name']; $filename1 = "images/small/". $_FILES['file']['name']; imagejpeg($tmp,$filename,100); imagejpeg($tmp1,$filename1,100); imagedestroy($src); imagedestroy($tmp); imagedestroy($tmp1); } } } //If no errors registred, print the success message if(!$errors) { // mysql_query("update SQL statement "); echo "Image Uploaded Successfully!"; }
Google map embedding problem in website
Have you ever face an error like “ Refused to display document because display forbidden by X-Frame-Options.” in error console while nothing is shown after embedding google map to your website?
There is a very easy solution to that. Just add “&output=embed” in the source link.
Spring MVC configuration Tutorial
While recently initiating a project using Spring MVC, we ware trying to discover some technical know how’s. We were doing that at random but one of my friend and college Abdullah Al Hasib made a skeleton project where almost all start-up issues are solved. He also made a documentation for us which further edited by Sheikh Nabil Mohammad also a Friend and college.
I am just including all of this here.
Please Download the project from here
And the sql file from here Continue reading