Showing posts with label eclipse. Show all posts
Showing posts with label eclipse. Show all posts

Saturday, March 18, 2017

Game RWBY Grimm Eclipse Full Version

Game RWBY Grimm Eclipse Full Version


Sore semua !, Kali ini game-pc8 akan berbagi game anime bergenre action yang sangat seru. Game ini bernama " RWBY Grimm Eclipse ".

RWBY Grimm Eclipse - adalah sebuah game anime yang baru dirilis dan telah menarik perhatian banyak sekali gammer. Game ini memiliki grafik yang sangat bagus, dan dalam game ini penuh sekali adegan peperangan atau pertarungan yang sangat seru. Game ini memiliki grafik yang sangat bagus, jadi diperlukan directX 11 untuk membuka game ini dengan grafik terbaiknya.

ScreenShoot :



GamePlay :


System Requirements :
  1. OS : Windows 7, 8, 8.1, 10
  2. Ram : 3 Gb or High
  3. Processor : Quad Core 2.8 Ghz
  4. DirectX : DirectX 11
Download Size 681 Mb
Download Via Openload
> | Download Game RWBY Grimm Eclipse |<  


Download Size 681 Mb
Download Via HDsuper
> | Download Game RWBY Grimm Eclipse |<  



Download Size 681 Mb
Download Via Tusfiles
> | Download Game RWBY Grimm Eclipse |<   


Available link for download

Read more »

Thursday, March 2, 2017

How to fix GC overhead limit exceeded in Eclipse

How to fix GC overhead limit exceeded in Eclipse


I was developing an android application in eclipse using ADT plug in.While building my application i had to face this annoying problem "Unable to execute Dex: GC overhead limit exceeded"

This could happen in any type of project.Today i  will share with you How to fix GC overhead limit exceeded in Eclipse.

Eclipse will throw GC overhead limit exceeded error when it runs out of memory, normally while performing very high memory-consuming operations such as building workspace on  very big projects.
To fix this problem, youll need to allocate more memory to your Eclipse instance. To perform this, follow the following steps-
Step1-locate the eclipse.ini file in your Eclipses installation directory. The content would be something similar to the following :

-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20140116-2212
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.6
-XX:MaxPermSize=256m
-Xms40m
-Xmx512m
Step2-To increase the memory allocation for your Eclipse instance, edit the number in the following lines accordingly(you may change this as per your requirement).
-Xms512m
-Xmx1024m
These options are passed to Java when launching Eclipse. Xms specifies the initial memory allocation pool, and Xmx specifies maximum memory allocation pool for Java Virtual Machine (JVM). The number is the amount of memory, in Megabytes. You can also increase the value of MaxPermSize, as the following;
-XX:MaxPermSize=1024m
MaxPermSize or Permanent Generation defines the memory allocated to keep compiled class files.

Step3-Restart Eclipse for the changes to take effect

Done! Happy Coding !


REGARDS

Shankha Jana


Available link for download

Read more »

Sunday, December 4, 2016

Hà m xóa dữ liệu với Jcheckbox trong Jtable Delete checkbox table Java Swing Gui Eclipse

Hà m xóa dữ liệu với Jcheckbox trong Jtable Delete checkbox table Java Swing Gui Eclipse





Hàm xóa d? li?u table khi dùng checkbox
Java 2016
public void deleteSinhVien(JTable table){
boolean tich = false;
Object[] options = { "Yes", "No" };
int n = JOptionPane.showOptionDialog(null, "B?n có mu?n xóa d? li?u này không?", "Confirm to Delete?",
JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[1]);
if (n == 0)
// Confirm Delete = Yes
{
for (int i = 0; i <
table.getRowCount(); i++) {
Boolean chkDel = Boolean.valueOf(
table.getValueAt(i, 0).toString()); // Checked
if (chkDel)
// Checked to Delete
{
// Delete Data
String sql = "DELETE FROM project.sinhvien WHERE idsv = ?";
try {
stmt = conn.prepareStatement(sql);
stmt.setString(1,
table.getValueAt(i, 1).toString());
stmt.executeUpdate();
tich = true;
} catch (Exception ed) {
JOptionPane.showMessageDialog(null, "Không th? xóa id "
+
table.getValueAt(i, 1).toString() + " vui lòng xem l?i b?ng ?i?m");
tich = false;
}
}
}
if (tich) {
JOptionPane.showMessageDialog(null, "Xóa d? li?u thành công!");
}
}
}


Available link for download

Read more »