This file contains hidden or 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
| [ | |
| { | |
| likeCount: 6, | |
| mid: "2651844951", | |
| voiceCount: 0, | |
| accountDes: "关注这个时代最好的产品。", | |
| rewardCount: 0, | |
| oriUrl: "http://www.ifanr.com/697018", | |
| source_username: "", | |
| copyrightStat: "1", |
This file contains hidden or 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 javax.swing.*; | |
| public class AllLookAndFeel { | |
| public static void main(String args[]) { | |
| System.out.println("All LookAndFeel"); | |
| for( UIManager.LookAndFeelInfo info :UIManager.getInstalledLookAndFeels() ){ | |
| System.out.println(info.getName() + "--->" + info); | |
| } | |
| } | |
| } |
This file contains hidden or 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
| function weixinAddContact(name){ | |
| WeixinJSBridge.invoke("addContact", {webtype: "1",username: name}, function(e) { | |
| WeixinJSBridge.log(e.err_msg); | |
| //e.err_msg:add_contact:added 已经添加 | |
| //e.err_msg:add_contact:cancel 取消添加 | |
| //e.err_msg:add_contact:ok 添加成功 | |
| if(e.err_msg == 'add_contact:added' || e.err_msg == 'add_contact:ok'){ | |
| //关注成功,或者已经关注过 | |
| } | |
| }) |