In this video issue a simple way to integrate any GitHub repository into the Eclipse IDE and to use it in your work-space
Tuesday, 1 August 2017
Thursday, 27 July 2017
A java Desktop app Comic viewer
Below is an application I created for viewing online comics from a website, this kind of application is actually what is called a scraper because it uses online the content. This application is created using the Java Swing API and Java swing components
below is a small snippet of the code that is available on my GitHub. for the full code please visit my GitHub link
The idea behind this application is that users will open up the desktop app and see the comic book covers or magazine covers of their choice and be able to Simply press on it.This will then open up that desired item for them to read. this application will refresh with new information as they source refreshes and changes day to day
below is a small snippet of the code that is available on my GitHub. for the full code please visit my GitHub link
code Snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.Color; | |
import java.awt.Desktop; | |
import java.awt.Image; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import java.io.BufferedInputStream; | |
import java.io.BufferedOutputStream; | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.OutputStream; | |
import java.net.MalformedURLException; | |
import java.net.URI; | |
import java.net.URISyntaxException; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.util.ArrayList; | |
import java.util.Scanner; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
import javax.annotation.Generated; | |
import javax.jws.Oneway; | |
import javax.swing.ImageIcon; | |
import javax.swing.JButton; | |
import javax.swing.JFrame; | |
import javax.swing.JPanel; | |
import javax.swing.JTextField; | |
public class Comics { | |
ArrayList plist= new ArrayList(); | |
public ArrayList linkList = new ArrayList(); | |
public JFrame frm= new JFrame(); | |
static int cbut=2; | |
public void getpic(String page){ | |
//this gets the pic links to be downloaded | |
try { | |
URL ultar= new URL(page); | |
URLConnection conn= ultar.openConnection(); | |
conn.setRequestProperty("User-Agent", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2"); | |
Pattern pat= Pattern.compile("http://www.comicscodes.com/wp-content/uploads/.*jpg"); | |
Scanner scn= new Scanner(conn.getInputStream()); | |
while(scn.hasNext()){ | |
Matcher mat=pat.matcher(scn.nextLine()); | |
if(mat.find()){ | |
String pics=mat.group(); | |
//System.out.println(mat.group()); | |
plist.add(pics); | |
} | |
} | |
} catch (MalformedURLException e) { | |
// TODO Auto-generated catch block | |
e.printStackTrace(); | |
} catch (IOException e) { | |
// TODO Auto-generated catch block | |
e.printStackTrace(); | |
} | |
} | |
public void wfile() throws Exception{ | |
int x=0; | |
//this parts actually download the picture and save it | |
//String spce="C:\\Users\\Lenovo t510\\Desktop\\code"; | |
String spce="c:\\code"; | |
File path2= new File(spce); | |
path2.mkdirs(); | |
while (x<plist.size()){ | |
URL ull= new URL(plist.get(x).toString()); | |
//System.out.println(ull); | |
x+=1; | |
String countp=path2+"\\pic"+x+".jpg"; | |
URLConnection conn= ull.openConnection(); | |
conn.setRequestProperty("User-Agent", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2"); | |
InputStream in = new BufferedInputStream(conn.getInputStream()); | |
OutputStream out = new BufferedOutputStream(new FileOutputStream(countp)); | |
for ( int i; (i =in.read()) != -1; ) { | |
out.write(i); | |
} | |
in.close(); | |
out.close(); | |
} | |
} | |
public void showme(){ | |
// this is the part that puts it all together and display it | |
JPanel pan= new JPanel(); | |
pan.setBackground(Color.BLACK); | |
cbut+=1; | |
int x=1; | |
int y=0; | |
while (x<plist.size()){ | |
x+=1; | |
//ImageIcon imc= new ImageIcon("C:\\Users\\Lenovo t510\\Desktop\\code\\pic"+x+".jpg"); | |
ImageIcon imc= new ImageIcon("C:\\code\\pic"+x+".jpg"); | |
Image inz= imc.getImage(); | |
Image newi=inz.getScaledInstance(200,200,Image.SCALE_REPLICATE); | |
JButton but= new JButton(new ImageIcon(newi)); | |
but.setBackground(Color.BLACK); | |
but.addActionListener(new cmclick(linkList.get(y).toString())); | |
y+=1; | |
pan.add(but); | |
} | |
JButton nexbut= new JButton("next but"); | |
JTextField enbox= new JTextField(20); | |
JButton sbutton= new JButton("search"); | |
pan.add(enbox); | |
pan.add(sbutton); | |
sbutton.addActionListener(new ActionListener() { | |
@Override | |
public void actionPerformed(ActionEvent e) { | |
String word= enbox.getText(); | |
String sword="http://www.comicscodes.com/?s="+word+"&searchsubmit="; | |
frm.dispose(); | |
Comics cm= new Comics(); | |
cm.getpic(sword); | |
cm.glink(sword); | |
try { | |
cm.wfile(); | |
} catch (Exception e1) { | |
// TODO Auto-generated catch block | |
e1.printStackTrace(); | |
} | |
cm.showme(); | |
} | |
}); | |
try { | |
nexbut.addActionListener(new nexbutthing(cbut)); | |
} catch (Exception e) { | |
// TODO Auto-generated catch block | |
e.printStackTrace(); | |
} | |
pan.add(nexbut); | |
frm.setBackground(Color.BLACK); | |
frm.add(pan); | |
frm.setSize(1480,800); | |
frm.setVisible(true); | |
frm.setDefaultCloseOperation(frm.EXIT_ON_CLOSE); | |
} | |
public void glink(String target){ | |
// this gets the link for the button to click | |
try { | |
URL tar =new URL(target); | |
URLConnection conn= tar.openConnection(); | |
conn.setRequestProperty("User-Agent", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2"); | |
Scanner scn= new Scanner(conn.getInputStream()); | |
Pattern pat= Pattern.compile("<a href=.*Continue reading"); | |
while (scn.hasNext()){ | |
Matcher mat=pat.matcher(scn.nextLine()); | |
if (mat.find()){ | |
String v1=mat.group(); | |
String v2= v1.replace("\" class=\"more-link\">Continue reading",""); | |
String v3= v2.replace("<a href=\"",""); | |
linkList.add(v3); | |
//System.out.println(v3); | |
} | |
} | |
} catch (Exception e) { | |
// TODO Auto-generated catch block | |
e.printStackTrace(); | |
} | |
} | |
public void close(){ | |
frm.setVisible(false); | |
frm.dispose(); | |
} | |
} |
Friday, 21 July 2017
Alternative to Showbox Torrent feature

wish show box could go back to the way it was?or an alternative to the new Showbox torrent feature.....click the to find out https://youtu.be/lf5AN_gO5zc
#showbox #shopperzsolutionz #terrariumtv #fixshowbox
Many users of Showbox have been unhappy with their latest update which sees Showbox moving away from using internal servers to a torrent only app. If you're a user who has limited storage on your mobile device or tablet, you'll find it very difficult to stream movies from Showbox.This is due to the fact that the torrent feature requires a large amount of storage, so movies and TV shows have to be downloaded to the device before they're able to be played. In the video above we discuss the alternative to this, and shows how to get around this limitation.
Monday, 10 July 2017
DZ09 Smart watch: the only honest review
In this video, we give an unbiased review of the dz09 smartwatch we tell you the flaws and pitfalls as well as the benefits of owning this item.,
click link to WATCH IT
click link to WATCH IT
Sunday, 2 July 2017
Create Push Notification in android (EASY) using oneSignal service
In this video we take a look at how to implement Android push notification (THE EASY WAY) with the help of one signal a service. documentation and links used in this video are provided below
link to Documentation and Code
https://documentation.onesignal.com/docs/android-sdk-setup
Tuesday, 13 June 2017
Terrarium TV for android :Better than showbox?
Terrarium TV for android :Better than showbox?
There is a new app Available to watch Streaming 1080P and HD Movies and Tv Shows for Free, it is called Terrarium TV.Most people see this app as a simplified version of Showbox, it's easy to use interface and its depth of movie catalog makes it a credible threat to Showbox.The depth of movie catalog cannot be understated comma it has the best I've seen in a long time since kody .You simply click on a movie of your choice and then the next screen pops up that results in the links to the movie, It is that simple.
In this video, we review it and see if its better than ShowBox
Download link
https://github.com/NitroXenon/Terrarium-Public/releases/download/1.6.4/app-release.apk
music for this video provided by
www.bensound.com
Wednesday, 7 June 2017
How to Fix 'Insufficient Storage Available' on Android EASY
If you are getting Insufficient Storage Available on your Android phone,this video will show you how to fix it,'
This video is mainly for phones that ARE ROOTED!
Sunday, 9 April 2017
Tuesday, 21 March 2017
In this Video we look at why your Kodi Addon's Break and some of the ways you can normally fix them and get them working again
Subscribe to:
Posts (Atom)