C++读取文件PE头
admin | win32 | 2017-03-31
C++
#include "stdafx.h"
#include <windows.h>
#include <stdio.h>
#include <iostream>
#ifndef _X_PE_H_
#define _X_PE_H_
//获取PE头基地址
#define SIZE_OF_NT_SIGNATURE sizeof(DWORD)
#define NTSIGNATURE(a) ((LPVOID)((BYTE *)a + ((PIMAGE_DOS_HEADER)a)->e_lfanew - 1))
#define ... [阅读全文]
Error:Cannot locate factory for objects of type DefaultGradleConnector, as ConnectorServiceRegistry
admin | andriod | 2017-03-29
AS报错处理
早上起来报这个错误,顿时间懵逼,我又没改文件怎么报这个错误,后来找到了解决办法
C++
Gradle 'MyApp' refresh failed.
Error:Cannot locate factory for objects of type DefaultGradleConnector, as ConnectorServiceRegistry has been closed.
123
Gradle 'MyApp' refres... [阅读全文]
android开发,修改状态栏字体颜色
admin | andriod | 2017-03-10
题主说的是把状态栏文字和图标改成深色模式吧?如果是想改成其他自定义颜色暂时没有办法。
详细内容可以看我的这篇白底黑字!Android浅色状态栏黑色字体模式
其实很多国内三方Android系统都有深色状态栏字体模式,但是目前只看到了小米和魅族公开了各自的实现方法,支持底层Android4.4以上的版本。而Android官方在6.0版本才有了深色状态栏字体API。
所... [阅读全文]
adb shell 命令详解
admin | andriod | 2017-03-01
adb介绍
SDK的Tools文件夹下包含着Android模拟器操作的重要命令adb,adb的全称为(Android Debug Bridge就是调试桥的作用。通过adb我们可以在Eclipse中方面通过DDMS来调试Android程序。借助这个工具,我们可以管理设备或手机模拟器的状态。还可以进行以下的操作:
1、快速更新设备或手机模拟器中的代码,如应用或Android 系统升级;
2、在设备上运行shel... [阅读全文]
Android Studio问题—Unsupported method: AndroidProject.getPluginGeneration().
admin | andriod | 2017-03-01
报错内容
C++
16:56:06 UnsupportedMethodException
Unsupported method: AndroidProject.getPluginGeneration().
The version of Gradle you connect to does not support that method.
To resolve the problem you can change/upgrade the target version of Gradle you connect to.
... [阅读全文]
解决 Android studio gradle 的 read-only property ‘jniFolders’ 编译错误
admin | andriod | 2017-02-28
Error:(73, 0) Cannot set the value of read-only property ‘jniFolders’ on
open file
因为 build.gradle 中 有删除这些内容
Java
clean.dependsOn 'cleanCopyNativeLibs'
tasks.withType(com.android.build.gradle.tasks.PackageApplication) { pkgTask ->
pkgTask.jniFolders =... [阅读全文]
Solution for Problems found loading plugins: Plugin “Google Services” was not loaded
admin | andriod | 2017-02-28
Just encountered an error while starting Android Studio after an Android Studio and SDK update. While starting Android Studio, a popup will notify you of a Plugin Error, detailed below,
Problems found loading plugins:
Plugin “Google Services” was not loaded: required plugin “Google Login” disabled.
It will also provide sever... [阅读全文]
C++ 获取父进程
admin | win32 | 2017-02-16
C++
// Win32Project2.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include <wtypes.h>
#include<tlhelp32.h>
#include <psapi.h>
#pragma comment(lib,"psapi.lib")
using namespace std;
#define ProcessBasicInformation 0
typedef struct
... [阅读全文]
获取运行过程中改名的文件的路径
admin | win32 | 2017-01-12
需求
一个 EXE 在运行过程中(被)改名了,需要准确地获取它的文件名。
尝试
原本以为这是一个非常简单的 CASE,直接用 GetModuleFileName 不就行了吗?结果还真不如我所想。无论程序运行过程中被改名成什么样子,GetModuleFileName 返回的都是 EXE 开始运行时的名字。然后又尝试了 GetProcessImageFileName,也是如此,直到最后找到了 QueryFullProces... [阅读全文]
宏与参数,类型冲突 pop_macro
admin | win32 | 2016-12-22
C++
//a.h
#include "b.h"
class A{
#pragma push_macro("aaaa")
#undef aaaa
void fuckyou( int aaaa);
#pragma pop_macro("aaaa")
};
//b.h
#define aaaa (*__daylight())
123456789101112
//a.h#include "b.h"class A{#pragma push_macro("aaaa")#undef aaaa &nbs... [阅读全文]