眯眯眼蜜蜂

文章
5
资源
0
加入时间
3年0月27天

iOS10 推送证书问题

Missing Push Notification Entitlement - Your app includes an API for Apple's Push Notification service, but the aps-environment entitlement is missing from the app's signature. To resolve this, make sure your App ID is enabled for push notification i

遍历map的四种方式

public static void main(String[] args) {// 循环遍历Map的4中方法Map<Integer, Integer> map = new HashMap<Integer, Integer>();map.put(1, 2);// 1. entrySet遍历,在键和值都需要时使用(最常用)for (Map.Entry<Integer, Integer> entry : map.en

JAVA数据类型对应DM数据库类型

数据类型转换问题经常出现在数据库迁移后应用程序适配过程中。以下为JAVA与DM数据库类型的映射关系:序号 JAVA类型 DM 1 BIGDECIMAL NUMBER\NUMERIC\DECIMAL\DEC 2 STRING CHAR\CHARACTER\VARCHAR\VARCHAR2\LONGVARCHAR 3 BOOLEAN BIT 4 INTEGER INTEGER\INT 5 LONG ...